Skip to content
代码片段 群组 项目
未验证 提交 7fb58b46 编辑于 作者: Lysanne Pinto's avatar Lysanne Pinto 提交者: GitLab
浏览文件

Merge branch 'docs-clarify-what-to-exclude' into 'master'

Clarify what exactly are excluded for calculating pipeline duration

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/142823



Merged-by: default avatarLysanne Pinto <lpinto@gitlab.com>
Approved-by: default avatarTianwen Chen <tchen@gitlab.com>
Approved-by: default avatarLysanne Pinto <lpinto@gitlab.com>
Reviewed-by: default avatarLin Jen-Shin <jen-shin@gitlab.com>
Reviewed-by: default avatarTianwen Chen <tchen@gitlab.com>
Co-authored-by: default avatarLin Jen-Shin <jen-shin@gitlab.com>
No related branches found
No related tags found
无相关合并请求
......@@ -363,8 +363,12 @@ downstream projects. On self-managed instances, an administrator can change this
### How pipeline duration is calculated
Total running time for a given pipeline excludes retries and pending
(queued) time.
The total running time for a given pipeline excludes:
- The duration of the initial run for any job that is retried or manually re-run.
- Any pending (queue) time.
That means that if a job is retried or manually re-run, only the duration of the latest run is included in the total running time.
Each job is represented as a `Period`, which consists of:
......@@ -373,26 +377,32 @@ Each job is represented as a `Period`, which consists of:
A simple example is:
- A (1, 3)
- B (2, 4)
- A (0, 2)
- A' (2, 4)
- This is retrying A
- B (1, 3)
- C (6, 7)
In the example:
- A begins at 1 and ends at 3.
- B begins at 2 and ends at 4.
- A begins at 0 and ends at 2.
- A' begins at 2 and ends at 4.
- B begins at 1 and ends at 3.
- C begins at 6 and ends at 7.
Visually, it can be viewed as:
```plaintext
0 1 2 3 4 5 6 7
AAAAAAA
BBBBBBB
AAAAAAA
BBBBBBB
A'A'A'A
CCCC
```
The union of A, B, and C is (1, 4) and (6, 7). Therefore, the total running time is:
Because A is retried, we ignore it and count only job A'.
The union of B, A', and C is (1, 4) and (6, 7). Therefore, the total
running time is:
```plaintext
(4 - 1) + (7 - 6) => 4
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册