Unable to add function app in App service plan, consumtion plan (Y1:0). I have few apps created in ame or diff plan in same region, Is this is a region issue? What is the Y1 plan limitation?

Richa Nagrath 1 Reputation point
2022-09-25T15:31:44.953+00:00

I have few apps created in same or diff plan in same region, Is this is a region issue? What is the Y1 plan limitation?
What should be the solution for this?
Does MS has reginal quota/limitations or App service plan restrictions?
Please guide me on Y1:0 Plan.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,678 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Andriy Bilous 11,176 Reputation points MVP
    2022-09-27T05:27:35.923+00:00

    Hello @Richa Nagrath

    When you're using the Function Consumption plan or Y1 plan, instances of the Azure Functions host are dynamically added and removed based on the number of incoming events. The Consumption plan is the fully serverless hosting option for Azure Functions.

    The Consumption plan scales automatically, even during periods of high load. When running functions in a Consumption plan, you're charged for compute resources only when your functions are running. On a Consumption plan, a function execution times out after a configurable period of time.

    The general recommendation is for each function app to have its own Consumption plan. However, if needed, function apps in the same region can be assigned to the same Consumption plan.
    Keep in mind that there is a limit to the number of function apps that can run in a Consumption plan. Function apps in a given plan are all scaled together, so any issues with scaling can affect all apps in the plan.

    https://learn.microsoft.com/uk-UA/azure/azure-functions/consumption-plan

    If you think your question has been answered, click "Mark as Accept Answer" if just helped click "Vote as helpful". This can be beneficial to other community members reading this forum thread.

    3 people found this answer helpful.
    0 comments No comments