Databricks SDK for JavaScript
    Preparing search index...

    Variable ClusterState_ClusterStateConst

    ClusterState_ClusterState: {
        ERROR: "ERROR";
        PENDING: "PENDING";
        RESIZING: "RESIZING";
        RESTARTING: "RESTARTING";
        RUNNING: "RUNNING";
        TERMINATED: "TERMINATED";
        TERMINATING: "TERMINATING";
        UNKNOWN: "UNKNOWN";
    } = ...

    The state of a Cluster. The current allowable state transitions are as follows:

    • PENDING -> RUNNING
    • PENDING -> TERMINATING
    • RUNNING -> RESIZING
    • RUNNING -> RESTARTING
    • RUNNING -> TERMINATING
    • RESTARTING -> RUNNING
    • RESTARTING -> TERMINATING
    • RESIZING -> RUNNING
    • RESIZING -> TERMINATING
    • TERMINATING -> TERMINATED

    Type Declaration

    • ReadonlyERROR: "ERROR"

      This state is not used anymore. It was used to indicate a cluster which failed to be created. Terminating and Terminated are used instead.

    • ReadonlyPENDING: "PENDING"

      Indicates a cluster that is in progress of being created.

    • ReadonlyRESIZING: "RESIZING"

      Indicates that a cluster is in the process of adding or removing nodes.

    • ReadonlyRESTARTING: "RESTARTING"

      Indicates that a cluster is in the process of restarting.

    • ReadonlyRUNNING: "RUNNING"

      Indicates a cluster that has been started and is ready for use.

    • ReadonlyTERMINATED: "TERMINATED"

      Indicates a cluster which has been successfully destroyed.

    • ReadonlyTERMINATING: "TERMINATING"

      Indicates that a cluster is in the process of being destroyed.

    • ReadonlyUNKNOWN: "UNKNOWN"

      Indicates a cluster which is an unknown state. A cluster should never be in this state.