Variable RunLifeCycleState_RunLifeCycleStateConst
RunLifeCycleState_RunLifeCycleState: {
BLOCKED: "BLOCKED";
INTERNAL_ERROR: "INTERNAL_ERROR";
PENDING: "PENDING";
QUEUED: "QUEUED";
RUNNING: "RUNNING";
SKIPPED: "SKIPPED";
TERMINATED: "TERMINATED";
TERMINATING: "TERMINATING";
WAITING_FOR_RETRY: "WAITING_FOR_RETRY";
} = ...
Type Declaration
ReadonlyBLOCKED: "BLOCKED"
ReadonlyINTERNAL_ERROR: "INTERNAL_ERROR"
ReadonlyPENDING: "PENDING"
ReadonlyQUEUED: "QUEUED"
ReadonlyRUNNING: "RUNNING"
ReadonlySKIPPED: "SKIPPED"
ReadonlyTERMINATED: "TERMINATED"
ReadonlyTERMINATING: "TERMINATING"
ReadonlyWAITING_FOR_RETRY: "WAITING_FOR_RETRY"
A value indicating the run's lifecycle state. The possible values are:
QUEUED: The run is queued.PENDING: The run is waiting to be executed while the cluster and execution context are being prepared.RUNNING: The task of this run is being executed.TERMINATING: The task of this run has completed, and the cluster and execution context are being cleaned up.TERMINATED: The task of this run has completed, and the cluster and execution context have been cleaned up. This state is terminal.SKIPPED: This run was aborted because a previous run of the same job was already active. This state is terminal.INTERNAL_ERROR: An exceptional state that indicates a failure in the Jobs service, such as network failure over a long period. If a run on a new cluster ends in theINTERNAL_ERRORstate, the Jobs service terminates the cluster as soon as possible. This state is terminal.BLOCKED: The run is blocked on an upstream dependency.WAITING_FOR_RETRY: The run is waiting for a retry.