19.55. JobStatus
Status of a job.
enum JobStatus {
// The job is unknown or in an unknown status.
JOB_STATUS_UNKNOWN = 0;
// The job is healthy; if stopped, it has completed successfully.
JOB_STATUS_HEALTHY = 1;
// The job has encountered a terminal error.
JOB_STATUS_FAULTED = 2;
// The job has been cancelled.
JOB_STATUS_CANCELED = 3;
// The job pod has been evicted as part of the cleanup process.
// When Clara Platform Server starts, any residual job pods from old jobs are evicted and the associated job status is marked as evicted.
JOB_STATUS_EVICTED = 4;
// The job has been terminated.
JOB_STATUS_TERMINATED = 5;
}
See also [JobState] for additional information.