3

I am trying to run multiple parallel tasks on Azure Dev Ops.

Do I need to have 1 agent per Parallel task? Or can a single agent take on multiple parallel tasks?

Zapnologica
  • 22,170
  • 44
  • 158
  • 253
  • 1
    what is the "tasks"? basiccaly each agent does 1 thing, so of you want to a few tasks to run in parallel you need 1 agents per task. – Shayki Abramczyk Jul 27 '21 at 17:08

1 Answers1

3

Tasks are executed sequentially in one job (and one job = one agent). So if you have them run in parallel you need to put them in separate jobs (which may not be a solution for you). There is feature request to enable parallel task (so please consider upvoting it) - but this is not possible at the moment.

halfer
  • 19,824
  • 17
  • 99
  • 186
Krzysztof Madej
  • 32,704
  • 10
  • 78
  • 107