Deployment Agent seems to be single threaded but we need multiple
We have 2 Release Pipelines and Stages in our Azure Devops Release Pipeline that share the same "Deployment Group" which has a single agent on a single server.
+----------------------+-------------+-------------------------------------+
| Release Pipeline | Stage | Maximum No of Parallel Deployments |
+----------------------+-------------+-------------------------------------+
| VegaDW-Full-Release | Smoke | 5 |
| VegaDW-Regular-Tasks | Safe Backup | 1 |
+----------------------+-------------+-------------------------------------+
I've indicated the number of parallel deployments set in the Deployment Queue settings of the Pre-deployment conditions of each stage above
However when VegaDW-Regular-Tasks\Safe Backup is running it seems to block the progress of any VegaDW-Full-Release\Smoke releases and so single-threading our releases. I also don't see setting the Smoke to 5 made any difference, it still seems to be single threading.
Is there any way to solve this?
The Agent.Version is showing as 2.140.2 is this an old version that can't do multithreaded releases? How do I update the agent if necessary? Thanks for your help
I've also read that you can't deploy more than one agent on a machine at a time, which was another idea I had to solve this, but this seems overkill.