Enum Class Task.TaskStatusForRunning

java.lang.Object
java.lang.Enum<Task.TaskStatusForRunning>
org.apache.wayang.spark.monitoring.interfaces.Task.TaskStatusForRunning
All Implemented Interfaces:
Serializable, Comparable<Task.TaskStatusForRunning>, Constable
Enclosing interface:
Task

public static enum Task.TaskStatusForRunning extends Enum<Task.TaskStatusForRunning>
The TaskStatusForRunning enum represents the possible statuses of a task while it is running.

Each enum value corresponds to a specific status: FAILED, SUCCESS, KILLED, SUCCESSFUL, RUNNING, FINISHED, or SPECULATIVE.

The FAILED status indicates that the task has failed and will not be able to complete successfully. The SUCCESS status indicates that the task has completed successfully and produced a result. The KILLED status indicates that the task was killed before it could complete. The SUCCESSFUL status indicates that the task has completed successfully, but did not produce a result. The RUNNING status indicates that the task is currently running. The FINISHED status indicates that the task has finished running, but its result has not yet been obtained. The SPECULATIVE status indicates that the task is running in a speculative manner, in addition to the primary task.

Author:
[Adeel Aslam]