Status class
Bases: _ReprEnum
Execution status of a Job.
It is implemented as an enumeration.
The possible values are:
-
SUBMITTED: ASUBMITTEDjob has been submitted for execution but not processed yet by the orchestrator. -
PENDING: APENDINGjob has been enqueued by the orchestrator. It is waiting for an executor to be available for its execution. -
BLOCKED: ABLOCKEDjob has been blocked because its input data nodes are not ready yet. It is waiting for the completion of anotherJob -
RUNNING: ARUNNINGjob is currently executed by a dedicated executor. -
CANCELED: ACANCELEDjob has been submitted but its execution has been canceled. -
FAILED: AFAILEDjob raised an exception during its execution. -
COMPLETED: ACOMPLETEDjob has successfully been executed. -
SKIPPED: ASKIPPEDjob has not been executed because its outputs were already computed. -
ABANDONED: AnABANDONEDjob has not been executed because it depends on a job that could not complete ( cancelled, failed, or abandoned).