Databricks SDK for JavaScript
    Preparing search index...

    The read-only replication status of a single Postgres table replicated under a CdfConfig. One status exists per replicated table. It is created automatically and cannot be modified.

    interface CdfStatus {
        committedLsn?: string;
        createTime?: Instant;
        lastSyncTime?: Instant;
        name?: string;
        postgresTable?: string;
        state?: CdfState;
        statusDetail?: string;
        ucTable?: string;
    }
    Index

    Properties

    committedLsn?: string

    The high-watermark Log Sequence Number (LSN) committed to Delta Lake.

    createTime?: Instant

    When replication for this table was first established.

    lastSyncTime?: Instant

    The last time changes for this table were written to Delta Lake.

    name?: string

    Output only. The full resource name of the CdfStatus. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}/cdf-statuses/{cdf_status} The {cdf_status} segment is the Postgres table name.

    postgresTable?: string

    The Postgres table being replicated.

    state?: CdfState

    The current replication state of this table.

    statusDetail?: string

    Human-readable detail for the current state (e.g. the skip/error reason). Empty for healthy states.

    ucTable?: string

    The Unity Catalog table receiving replicated data.