Databricks SDK for JavaScript
    Preparing search index...
    OnlineTableState: {
        OFFLINE: "OFFLINE";
        OFFLINE_FAILED: "OFFLINE_FAILED";
        ONLINE: "ONLINE";
        ONLINE_CONTINUOUS_UPDATE: "ONLINE_CONTINUOUS_UPDATE";
        ONLINE_NO_PENDING_UPDATE: "ONLINE_NO_PENDING_UPDATE";
        ONLINE_PIPELINE_FAILED: "ONLINE_PIPELINE_FAILED";
        ONLINE_TABLE_STATE_UNSPECIFIED: "ONLINE_TABLE_STATE_UNSPECIFIED";
        ONLINE_TRIGGERED_UPDATE: "ONLINE_TRIGGERED_UPDATE";
        ONLINE_UPDATING_PIPELINE_RESOURCES: "ONLINE_UPDATING_PIPELINE_RESOURCES";
        PROVISIONING: "PROVISIONING";
        PROVISIONING_INITIAL_SNAPSHOT: "PROVISIONING_INITIAL_SNAPSHOT";
        PROVISIONING_PIPELINE_RESOURCES: "PROVISIONING_PIPELINE_RESOURCES";
    } = ...

    The state of an online table.

    Type Declaration

    • ReadonlyOFFLINE: "OFFLINE"

      The online table has encountered an internal error and is not available for serving.

    • ReadonlyOFFLINE_FAILED: "OFFLINE_FAILED"

      The online table is not available for serving because the data synchronization pipeline has failed. Please review the pipeline event logs to troubleshoot.

    • ReadonlyONLINE: "ONLINE"

      The online table is ready to serve data.

    • ReadonlyONLINE_CONTINUOUS_UPDATE: "ONLINE_CONTINUOUS_UPDATE"

      The online table is ready to serve data and is continuously updating. Only shown for online tables using the "Continuous" sync mode.

    • ReadonlyONLINE_NO_PENDING_UPDATE: "ONLINE_NO_PENDING_UPDATE"

      The online table is ready to serve data and there are no active updates. Only shown for online tables using the "Triggered" sync mode.

    • ReadonlyONLINE_PIPELINE_FAILED: "ONLINE_PIPELINE_FAILED"

      The data synchronization pipeline has encountered an error but the online table is still available for serving (potentially stale) data. Please review the pipeline event logs to troubleshoot.

    • ReadonlyONLINE_TABLE_STATE_UNSPECIFIED: "ONLINE_TABLE_STATE_UNSPECIFIED"

      The default state. It should not be reported by any online tables.

    • ReadonlyONLINE_TRIGGERED_UPDATE: "ONLINE_TRIGGERED_UPDATE"

      The online table is ready to serve data and an active update is in progress. Only shown for online tables using the "Triggered" sync mode.

    • ReadonlyONLINE_UPDATING_PIPELINE_RESOURCES: "ONLINE_UPDATING_PIPELINE_RESOURCES"

      The online table is available for serving, and is provisioning resources for a newly started data synchronization pipeline.

    • ReadonlyPROVISIONING: "PROVISIONING"

      The online table has just been created and resources are being provisioned. This is also the catch-all state if there is not a more suitable state to report for the online table.

    • ReadonlyPROVISIONING_INITIAL_SNAPSHOT: "PROVISIONING_INITIAL_SNAPSHOT"

      The online table is executing the initial data synchronization.

    • ReadonlyPROVISIONING_PIPELINE_RESOURCES: "PROVISIONING_PIPELINE_RESOURCES"

      The online table is provisioning resources for the data synchronization pipeline.