Databricks SDK for JavaScript
    Preparing search index...

    Variable PublishSpec_PublishModeConst

    PublishSpec_PublishMode: {
        CONTINUOUS: "CONTINUOUS";
        PUBLISH_MODE_UNSPECIFIED: "PUBLISH_MODE_UNSPECIFIED";
        SNAPSHOT: "SNAPSHOT";
        TRIGGERED: "TRIGGERED";
    } = ...

    Type Declaration

    • ReadonlyCONTINUOUS: "CONTINUOUS"

      Pipeline runs continuously after syncing the initial data. Requires the source table to have Change Data Feed (CDF) enabled.

    • ReadonlyPUBLISH_MODE_UNSPECIFIED: "PUBLISH_MODE_UNSPECIFIED"
    • ReadonlySNAPSHOT: "SNAPSHOT"

      Pipeline stops after syncing the initial data and can be triggered later (manually, through a cron job or through data triggers). Successive updates always perform a full copy of the source table data (no incremental updates). Does not require the source table to have Change Data Feed (CDF) enabled.

    • ReadonlyTRIGGERED: "TRIGGERED"

      Pipeline stops after syncing the initial data and can be triggered later (manually, through a cron job or through data triggers). Requires the source table to have Change Data Feed (CDF) enabled.