Databricks SDK for JavaScript
    Preparing search index...

    Interface SyncedTableTriggeredUpdateStatus

    Detailed status of a synced table. Shown if the synced table is in the SYNCED_TRIGGERED_UPDATE or the SYNCED_NO_PENDING_UPDATE state.

    interface SyncedTableTriggeredUpdateStatus {
        lastProcessedCommitVersion?: bigint;
        timestamp?: Instant;
        triggeredUpdateProgress?: SyncedTablePipelineProgress;
    }
    Index

    Properties

    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.

    triggeredUpdateProgress?: SyncedTablePipelineProgress

    Progress of the active data synchronization pipeline.