Execution Status
Task Status
Once the workflow is submitted for execution, tasks will proceed in the defined order. The possible statuses of tasks include:Task likely status is:
NOT_STARTED: The initial status, which is set when a DAG graph is created.READY: When the DagTraversal module reaches a task node and the task is ready to be executed.RUNNING: The status while a task node is in execution.SUCCEED: When a task node has successfully completed execution.FAILED: If a task node fails during execution.SKIPPED: This status is set if, after executingoutputMappings, the result ofchoiceTaskcondition is false and the task'stoleranceattribute is true.
Workflow Status
After the workflow has been submitted, the overall status of the workflow can be:
NOT_STARTED: Not started.RUNNING: Currently in execution.SUCCEED: Successfully executed.FAILED: Execution failed.
API Query
For detailed information on querying the execution status of workflows, refer to: API Documentation.
Backend Query
See[执行管理](../06-background/03-execution.md# for more details).