Hi @Rudy Lopes | Steelcraft Framing
Thank you for reaching out to Microsoft Q&A.
The issue you are encountering is expected behavior for new Azure DevOps organizations. Free hosted parallelism (even the single parallel job for private projects) is no longer automatically granted due to abuse prevention controls and instead requires manual approval via the request form. While typically these requests are processed within a few business days, there are known scenarios where requests are delayed or no acknowledgment is sent, especially during high request volumes or backend processing delays. Since you have already submitted the request twice (April 21 and May 5, 2026) and have not received any response, this indicates that your request is likely stuck or not yet processed by the backend team, and you will need to actively follow up or use alternative approaches to unblock your pipeline.
Refer below points to resolve this issue or this is the workaround:
Follow up with Azure DevOps free tier support team
Send an email to the dedicated support mailbox used for parallelism requests:
Email: azpipelines-freetier@microsoft.com Include your organization name, submission dates, project type, and clearly mention that no acknowledgment has been received. This is the most effective way to get your request reviewed manually.
Raise a ticket on Developer Community
https://developercommunity.azure.com/AzureDevOps
Since in-product support requires a paid plan, you can raise this issue here:
Visual Studio Developer Community Provide all details (organization name, dates, screenshots if possible). These tickets are monitored by Microsoft engineers and can help escalate internally when requests are stuck.
Use a self-hosted agent as a temporary workaround
You can configure a self-hosted agent which does not require parallelism approval and works immediately.
High-level steps:
Go to Project Settings → Agent Pools → Add pool (Self-hosted)
Download the agent and configure it on your V
mkdir myagent && cd myagent
# Download agent package (from portal)
tar zxvf <agent-package>.tar.gz
./config.sh
./run.sh
Update your YAML pipeline:
pool:
name: <your-self-hosted-pool>
Purchase 1 parallel job
If your deployment is time-sensitive, you can purchase 1 Microsoft-hosted parallel job from:
-
Organization Settings → Billing → Parallel Jobs
This enables pipelines immediately and you can later revert if the free grant is approved.