An Azure service that is used to provision Windows and Linux virtual machines.
Hello @Jose Macedo,
VM Size = NC144ds_xl_RTXPRO6000BSE_v6 - 8x RTX PRO 6000 Blackwell 96GB, 144 vCPUs. This family went GA in June 2026 only in West US 2 and Southeast Asia. Single-cluster offering = extremely limited supply.
1. Is there a known shortage in West US 2 Zone 3? Yes, by design. NCv6 Blackwell is a new, supply-constrained GPU. Microsoft lists only 2 GA regions as of GA announcement. West US 2 Zone 3 is the only zone in the US where list-skus returns it for you. When that one cluster fills, every customer trying to Start/Resize/Create that SKU in that zone gets AllocationFailed. There is no public ETA, Capacity frees only when someone else in that cluster stops/deletes.
2. Can the capacity team flag your subscription? Azure does not have a waitlist / flag for best-effort allocation. The platform does not queue your request. You need to open a Support Request > Service and subscription limits (quotas) > Virtual Machine > Capacity Assistance or Technical > VM Allocation Failure.
Include: Subscription ID, VM name, region/zone, SKU, exact error code OverconstrainedZonalAllocationRequest, timeline since 2026-08-04 06:24 UTC+1, 50+ retries, business impact, and that this is a stopped existing production VM, not a new deployment.
Support can check internal cluster utilization and in some cases do a live capacity placement assist, but they cannot guarantee time.
3. Would an On-Demand Capacity Reservation be grantable? This is your only durable fix. Yes, ODR is supported for N-series in West US 2, but you have 2 blockers right now:
- Your quota is 144/144 consumed by the stopped VM. ODR consumes quota separately. You need to request a quota increase to e.g. 288 for
Standard NCsRTXPRO6000BSEv6 Family vCPUsin West US 2 before you create the reservation. - The reservation creation itself will also fail if there is no capacity at that moment - same as VM start. So you will need to attempt it in a loop or via Support.
Steps to try:
Bash
# 1. Create reservation group in zone 3az capacity reservation group create -g <rg> -n ncv6-wus2-z3 --location westus2 -z 3
# 2. Try to create reservation for the same SKUaz capacity reservation create -g <rg> --capacity-reservation-group ncv6-wus2-z3 \ -n ncv6-144 --sku Standard_NC144ds_xl_RTXPRO6000BSE_v6 --capacity 1
# If that fails with allocation, try smaller slices - sometimes 24/48/96 is grantable when 144 is not:# Standard_NC24ads_A10_v4 style does not apply - for this family sizes are:# Standard_NC24ds_v6, NC48ds_v6, NC96ds_v6, NC144ds_xl_RTXPRO6000BSE_v6
If reservation succeeds, associate your VM: Stop (deallocate) VM, set capacityReservationGroup property to the group ID, Start.
For future Blackwell VMs, best practice: Never Deallocate. Use az vm stop (not deallocate) to keep allocation, or keep an ODR. Deallocated = no hardware held.
4. Region expansion for NCv6 beyond West US 2 and SE Asia? No public roadmap dates yet. GA announcement is only West US 2 + Southeast Asia. Historically N-series expands to East US, East US 2, West US 3, North Central US in 1-2 quarters after initial GA. If you have a Microsoft account team, ask them to add you to the NCv6 expansion private preview waitlist and to file a Region Expansion customer impact statement - that is what influences prioritization.
If this answers your query, do click Accept Answer and Up-Vote for the same. And, if you have any further query do let us know.