user1606815
user1606815

Reputation: 1

Error with Azure app service plan deployment

I am trying to create an app service plan (B3) on Azure West Europe location. This gets me the error

Code: Conflict No available instances to satisfy this request. App Service is attempting to increase capacity. Please retry your request later. If urgent, this can be mitigated by deploying this to a new resource group.

This is happening on and off for a week. It is a new resource group and a new service plan, however, we have a lot of similar service plans in our subscription.

I tried troubleshooting by deploying to a different-named resource group and this works, however, this is not what I want as we have naming conventions. Even when deleting the entire resource group, then redeploying, gives me the above error. What is going on?

EDIT: After a weekend of success the problem is now back in full force. I am getting flustered as this costs me a lot of time and I can show no results while this error is here.

What I tried:

Upvotes: 0

Views: 796

Answers (1)

Naveen Sharma
Naveen Sharma

Reputation: 1288

Code: Conflict No available instances to satisfy this request. App Service is attempting to increase capacity. Please retry your request later. If urgent, this can be mitigated by deploying this to a new resource group.

The error message you’re encountering occurs because,

  • Azure regions like West Europe can run out of resources temporarily when there’s high demand, especially for popular tiers like B3
  • Even new resource groups can still face capacity problems if the region is busy, or the App Service Plan tier is popular.

To resolve the issue

  • Check Subscription Quotas: Verify that your subscription hasn’t reached its resource or regional quota limits:
  1. Go to Azure Portal > Subscriptions > Usage + Quotas.
  2. Check if there are any constraints specific to the region or resource type (e.g., App Service Plans).

enter image description here

  • Try deploying with a lower tier like B2 or S1 first, then upgrade to B3 later if needed.
  • Refer this DOC for Azure app service limits, quotas and constrains.
  • Azure regions scale automatically, but this can take time. If your deployment is not time-sensitive, try redeploying later.
  • Refer this DOC for distributing workloads across regions and using autoscaling effectively can help prevent capacity-related deployment issues.

Upvotes: 0

Related Questions