Databricks SDK for JavaScript
    Preparing search index...

    Variable SyncedTableSchedulingPolicyConst

    SyncedTableSchedulingPolicy: {
        CONTINUOUS: "CONTINUOUS";
        SNAPSHOT: "SNAPSHOT";
        SYNCED_TABLE_SCHEDULING_POLICY_UNSPECIFIED: "SYNCED_TABLE_SCHEDULING_POLICY_UNSPECIFIED";
        TRIGGERED: "TRIGGERED";
    } = ...

    Type Declaration

    • ReadonlyCONTINUOUS: "CONTINUOUS"

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

    • ReadonlySNAPSHOT: "SNAPSHOT"

      Pipeline stops after generating 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.

    • ReadonlySYNCED_TABLE_SCHEDULING_POLICY_UNSPECIFIED: "SYNCED_TABLE_SCHEDULING_POLICY_UNSPECIFIED"
    • ReadonlyTRIGGERED: "TRIGGERED"

      Pipeline stops after generating 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.