Wei Yu
Wei Yu

Reputation: 119

Running parallel pipelines on different branches

These are two branches of a project www.example.com: branch logan and branch bella.

The 33rd pipeline is the logan branch of www.example.com, and the 34rd pipeline is the bella branch of www.example.com.

When the 33rd pipeline is not over, the 34rd pepeline will always be in the pending stage.

If the pepeline of one branch is pending, the pepeline of the other branch will be affected?
This is very strange.How can I solve this problem?

enter image description here

Upvotes: 1

Views: 338

Answers (1)

leoschet
leoschet

Reputation: 1866

If you have your own runners, you can modify the config.toml file, specifically changing the request_concurrency property:

[[runners]]
  name = "super-runner"
  request_concurrency = 10
  ...

If using kubernetes executor you can add the env variable RUNNER_REQUEST_CONCURRENCY and it will set the desired request_concurrency for every runner created.

Upvotes: 1

Related Questions