You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- UNKNOWN - The backend doesn't know about the task anymore, it has disappeared from the system or it was never created (eg. when we are asking for the task)
28
+
- NOT_STARTED - Default state when the task is created
29
+
- PUBLISHED - The task has been submitted to the computational backend (click on "Run" button in the UI)
30
+
- PENDING - Task has been transferred to the Dask scheduler and is waiting for a worker to pick it up (director-v2 --> Dask scheduler)
31
+
- But! it is also transition state (ex. PENDING -> WAITING_FOR_CLUSTER -> PENDING -> WAITING_FOR_RESOURCES -> PENDING -> STARTED)
32
+
- WAITING_FOR_CLUSTER - No cluster (Dask scheduler) is available to run the task; waiting for one to become available
33
+
- WAITING_FOR_RESOURCES - No worker (Dask worker) is available to run the task; waiting for one to become available
34
+
- STARTED - A worker has picked up the task and is executing it
35
+
- SUCCESS - Task finished successfully
36
+
- FAILED - Task finished with an error
37
+
- ABORTED - Task was aborted before completion
39
38
40
-
STARTED="STARTED"# A worker has picked up the task and is executing it
39
+
"""
41
40
42
-
SUCCESS="SUCCESS"# Task finished successfully
43
-
FAILED="FAILED"# Task finished with an error
44
-
ABORTED="ABORTED"# Task was aborted before completion
0 commit comments