Databricks SDK for JavaScript
    Preparing search index...
    interface SyncedTablePosition {
        sourceSyncInfo?: {
            $case: "deltaTableSyncInfo";
            deltaTableSyncInfo: DeltaTableSyncInfo;
        };
        syncEndTimestamp?: Instant;
        syncStartTimestamp?: Instant;
    }
    Index

    Properties

    sourceSyncInfo?: {
        $case: "deltaTableSyncInfo";
        deltaTableSyncInfo: DeltaTableSyncInfo;
    }

    Information about the source system at the time of the last sync.

    syncEndTimestamp?: Instant

    The end timestamp of the most recent successful synchronization. This is the time when the data is available in the synced table.

    syncStartTimestamp?: Instant

    The starting timestamp of the most recent successful synchronization from the source table to the destination (synced) table. Note this is the starting timestamp of the sync operation, not the end time. E.g., for a batch, this is the time when the sync operation started.