Databricks SDK for JavaScript
    Preparing search index...

    Detailed status of an online table. Shown if the online table is in the ONLINE_CONTINUOUS_UPDATE or the ONLINE_UPDATING_PIPELINE_RESOURCES state.

    interface ContinuousUpdateStatus {
        initialPipelineSyncProgress?: PipelineProgress;
        lastProcessedCommitVersion?: bigint;
        timestamp?: Instant;
    }
    Index

    Properties

    initialPipelineSyncProgress?: PipelineProgress

    Progress of the initial data synchronization.

    lastProcessedCommitVersion?: bigint

    The last source table Delta version that was synced to the online table. Note that this Delta version may not be completely synced to the online table yet.

    timestamp?: Instant

    The timestamp of the last time any data was synchronized from the source table to the online table.