Azure Pipelines "No hosted parallelism has been purchased"
The pipeline could not run on Microsoft-hosted agents because the organization has no hosted parallelism, which new orgs must request as a free grant.
What this error means
The run fails immediately with "No hosted parallelism has been purchased or granted" and a link to request free parallelism. No job starts.
azure-pipelines
##[error]No hosted parallelism has been purchased or granted.
To request a free parallelism grant, please fill out the following formCommon causes
New org without a free grant
Microsoft now requires new organizations to request the free Microsoft-hosted parallelism grant before hosted jobs run.
No purchased parallel jobs
The org has no paid parallel jobs and no grant.
How to fix it
Request or purchase parallelism
- Submit the free parallelism grant request form linked in the error.
- Or buy Microsoft-hosted parallel jobs under Organization settings > Parallel jobs.
Use a self-hosted pool meanwhile
- Point the pipeline at a self-hosted agent pool, which does not consume hosted parallelism.
azure-pipelines.yml
pool: self-hosted-linuxHow to prevent it
- Request the parallelism grant when creating a new organization; this is an entitlement/config gate, not a transient failure, so retrying will not help.
Related guides
Azure Pipelines "No agent found in pool matches the demands"Fix the Azure Pipelines "No agent found in pool that satisfies the demands" error where no agent advertises t…
Azure Pipelines "All potential agents are in use" WaitFix the Azure Pipelines wait where "all potential agents are in use" because the self-hosted pool has no free…
Azure Pipelines "We stopped hearing from agent" Lost CommunicationFix the Azure Pipelines "We stopped hearing from agent" error where the service lost communication with the a…