Reference documentation and code samples for the Batch V1 API module Google::Cloud::Batch::V1::JobStatus::State.
Valid Job states.
Constants
STATE_UNSPECIFIED
value: 0
Job state unspecified.
QUEUED
value: 1
Job is admitted (validated and persisted) and waiting for resources.
SCHEDULED
value: 2
Job is scheduled to run as soon as resource allocation is ready.
The resource allocation may happen at a later time but with a high
chance to succeed.
RUNNING
value: 3
Resource allocation has been successful. At least one Task in the Job is
RUNNING.
SUCCEEDED
value: 4
All Tasks in the Job have finished successfully.
FAILED
value: 5
At least one Task in the Job has failed.
DELETION_IN_PROGRESS
value: 6
The Job will be deleted, but has not been deleted yet. Typically this is
because resources used by the Job are still being cleaned up.
CANCELLATION_IN_PROGRESS
value: 7
The Job cancellation is in progress, this is because the resources used
by the Job are still being cleaned up.
CANCELLED
value: 8
The Job has been cancelled, the task executions were stopped and the
resources were cleaned up.