Databricks SDK for JavaScript
    Preparing search index...

    Progress information of the Online Table data synchronization pipeline.

    interface PipelineProgress {
        estimatedCompletionTimeSeconds?: number;
        latestVersionCurrentlyProcessing?: bigint;
        syncedRowCount?: bigint;
        syncProgressCompletion?: number;
        totalRowCount?: bigint;
    }
    Index

    Properties

    estimatedCompletionTimeSeconds?: number

    The estimated time remaining to complete this update in seconds.

    latestVersionCurrentlyProcessing?: bigint

    The source table Delta version that was last processed by the pipeline. The pipeline may not have completely processed this version yet.

    syncedRowCount?: bigint

    The number of rows that have been synced in this update.

    syncProgressCompletion?: number

    The completion ratio of this update. This is a number between 0 and 1.

    totalRowCount?: bigint

    The total number of rows that need to be synced in this update. This number may be an estimate.