Share via

"Capacity is not available in this region/zone. Please retry after some time." error when trying to scale across compute tiers

JK 10 Reputation points
2026-03-18T18:59:07.6866667+00:00

Running into the following error when trying to scale up a Azure Database for PostgreSQL flexible server.

{
  "code": "CapacityNotAvailable",
  "message": "Capacity is not available in this region/zone. Please retry after some time."
}
  • Going from Standard_B1ms to ANY SKU fails (Standard_D2ds_v5, Standard_D2ds_v4, Standard_D2ds_v3, Standard_D2ads_v5)
  • Scaling up within Burstable also fails (Standard_B2s)
  • Tried many times over multiple days
  • East US

All of the SKUs are available when I run az postgres flexible-server list-skus --location eastus

I also requested and was granted Region access quota in East US a while ago and was successful.

Azure Database for PostgreSQL

2 answers

Sort by: Most helpful
  1. JK 10 Reputation points
    2026-03-20T00:35:18.18+00:00

    None of the solutions offered worked. Had to re-create the database from scratch.

    0 comments No comments

  2. Pilladi Padma Sai Manisha 6,585 Reputation points Microsoft External Staff Moderator
    2026-03-18T21:02:39.45+00:00

    Thanks for clarifying , completely understand that moving regions isn’t an option due to the VNet dependency.

    Given everything you’ve already validated (multiple SKUs + CLI showing availability), this points to capacity pressure at the zone/cluster level within East US, not quota or SKU access.

    Since you need to stay in the same region, you can try a few targeted workarounds:

    Switch Availability Zone (or temporarily remove zone pinning, if configured)

    • Stop > Start the server, then retry scaling (this can sometimes land the server on different underlying capacity)
    • Try scaling in smaller steps (e.g., B1ms > B2s > D-series), instead of jumping directly

    Retry during different time windows, as capacity can fluctuate within the region

    Also worth noting: even though SKUs appear available via CLI, they may not be available in the specific zone your server is currently allocated to, which is why all scale attempts can fail.

    Hope this helps narrow it down a bit further.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.