Models
Job Status
The JobStatus enumeration for job statuses.
class JobStatus(str, Enum):
PENDING = "PENDING"
RUNNABLE = "RUNNABLE"
STARTING = "STARTING"
RUNNING = "RUNNING"
FAILED = "FAILED"
SUCCEEDED = "SUCCEEDED"| Member | Description |
|---|---|
PENDING | The job is waiting to be processed. |
RUNNABLE | The job is ready to be run. |
STARTING | The job is in the process of starting. |
RUNNING | The job is currently executing. |
FAILED | The job execution failed. |
SUCCEEDED | The job completed successfully. |