Skip to content

Run view - Show real status names #1540

@Ark-kun

Description

@Ark-kun

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;
Loading

Tech Doc about statuses

Metadata

Metadata

Assignees

Labels

P1Important issue

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions