mirror of
https://github.com/clearml/clearml-docs
synced 2025-02-07 13:21:46 +00:00
Add pipeline progress (#285)
This commit is contained in:
parent
e06ea55078
commit
9fb6b16e23
@ -83,6 +83,11 @@ Each pipeline must be assigned a version number to help track the evolution of y
|
||||
If you pass `auto_version_bump=True` when instantiating a PipelineController, the pipeline’s version automatically bumps up
|
||||
if there is a change in the pipeline code. If there is no change, the pipeline retains its version number.
|
||||
|
||||
### Tracking Pipeline Progress
|
||||
ClearML automatically tracks a pipeline’s progress percentage: the number of pipeline steps completed out of the total
|
||||
number of steps. For example, if a pipeline consists of 4 steps, after the first step completes, ClearML automatically
|
||||
sets its progress value to 25. Once a pipeline has started to run but is yet to successfully finish, , the WebApp will
|
||||
show the pipeline’s progress indication in the pipeline runs table, next to the run’s status.
|
||||
|
||||
## Examples
|
||||
|
||||
|
@ -22,7 +22,7 @@ The models table contains the following columns:
|
||||
| **RUN** | Pipeline run identifier | String |
|
||||
| **VERSION** | The pipeline version number. Corresponds to the [PipelineController](../../references/sdk/automation_controller_pipelinecontroller.md#class-pipelinecontroller) ’s and [PipelineDecorator](../../references/sdk/automation_controller_pipelinecontroller.md#class-automationcontrollerpipelinedecorator)’s `version` parameter | Version string |
|
||||
| **TAGS** | Descriptive, user-defined, color-coded tags assigned to run. | Tag |
|
||||
| **STATUS** | Pipeline run's status. See a list of the [task states and state transitions](../../fundamentals/task.md#task-states). | String |
|
||||
| **STATUS** | Pipeline run's status. See a list of the [task states and state transitions](../../fundamentals/task.md#task-states). For Running, Failed, and Aborted runs, you will also see a progress indicator next to the status. See [here](../../pipelines/pipelines.md#tracking-pipeline-progress). | String |
|
||||
| **USER** | User who created the run. | String |
|
||||
| **STARTED** | Elapsed time since the run started. To view the date and time of start, hover over the elapsed time. | Date-time |
|
||||
| **UPDATED** | Elapsed time since the last update to the run. To view the date and time of update, hover over the elapsed time. | Date-time |
|
||||
|
Loading…
Reference in New Issue
Block a user