forked from Cloud-Pipelines/pipeline-editor
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
P1Important issueImportant issue
Description
We must show real status names in the execution node titles and node details.
Currently status names often do not correspond to a real status. For example, "Pending" instead of "Waiting for upstream".
The real statuses are
- Queued (Orchestrator has not attempted to launch the execution yet)
- Waiting for upstream (can be shortened if it breaks UX; )
- Pending (job is created in external execution system, but container has not started yet (and may never start if something is wrong (container image, insufficient resources)))
- Running
- Succeeded
- Failed
- System error
- Skipped
- Cancelled
graph TD;
Queued --> Waiting_for_upstream;
Queued --> Pending;
Pending --> Running;
Running --> Succeeded;
Running --> Failed;
Running --> Cancelled;
Waiting_for_upstream --> Skipped;
Waiting_for_upstream --> Pending
Queued --> System_error;
Pending --> System_error;
Running --> System_error;
Metadata
Metadata
Assignees
Labels
P1Important issueImportant issue