Databricks SDK for JavaScript
    Preparing search index...

    Interface SyncedTableContinuousUpdateStatus

    Detailed status of a synced table. Shown if the synced table is in the SYNCED_CONTINUOUS_UPDATE or the SYNCED_UPDATING_PIPELINE_RESOURCES state.

    interface SyncedTableContinuousUpdateStatus {
        initialPipelineSyncProgress?: SyncedTablePipelineProgress;
        lastProcessedCommitVersion?: bigint;
        timestamp?: Instant;
    }
    Index

    Properties

    initialPipelineSyncProgress?: SyncedTablePipelineProgress

    Progress of the initial data synchronization.

    lastProcessedCommitVersion?: bigint

    The last source table Delta version that was successfully synced to the synced table.

    timestamp?: Instant

    The end timestamp of the last time any data was synchronized from the source table to the synced table. This is when the data is available in the synced table.