Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @shantanu singh
If any member faces a 429 error during an App Service Plan deployment, the issue usually occurs because Azure is throttling the request after too many create or update operations are sent in a short period, causing Azure Resource Manager to return “Too Many Requests,” often with a Retry-After header. In this situation, the best immediate action is to slow down deployments, avoid running parallel operations, and implement exponential backoff so retries wait for the required time. To diagnose further, the member should review the Activity Log and deployment operations in the Azure Portal to confirm the exact throttling event and examine the response headers for subcodes such as SubscriptionRequestsThrottled. For long-term prevention, reducing deployment bursts, following retry best practices, and monitoring subscription limits will help avoid repeated throttling.
https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/troubleshoot-request-rate-too-large?tabs=resource-specific
https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/request-limits-and-throttling#retry-guidance
Let me know if you have any further assistances needed.