State(value)
Valid Job states.
Enums |
|
---|---|
Name | Description |
STATE_UNSPECIFIED |
Job state unspecified. |
QUEUED |
Job is admitted (validated and persisted) and waiting for resources. |
SCHEDULED |
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 |
Resource allocation has been successful. At least one Task in the Job is RUNNING. |
SUCCEEDED |
All Tasks in the Job have finished successfully. |
FAILED |
At least one Task in the Job has failed. |
DELETION_IN_PROGRESS |
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 |
The Job cancellation is in progress, this is because the resources used by the Job are still being cleaned up. |
CANCELLED |
The Job has been cancelled, the task executions were stopped and the resources were cleaned up. |