Azure function app error

Avinash Davkhar 20 Reputation points
2024-09-11T14:43:14.29+00:00

I have changed the azure function app service plan from consumption based to premium, after that I have started getting warning **'**Your app is not configured for dynamic scaling. Scaling could be limited. Click to learn more.'

Will this warning affect the operation of the Azure function?

User's image

User's image

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

2 answers

Sort by: Most helpful
  1. Ryan Hill 28,631 Reputation points Microsoft Employee
    2024-09-11T22:07:15.67+00:00

    Hi @Avinash Davkhar

    No, it won't. Consumption plan by default will scale your function app based on demand. By switching to the Premium SKU, this is a decision you will have to make based on your application needs. This warning message is just to alert you that your app has not been configured for scaling yet. Things you will want to check are:

    App Settings: Ensure that your app settings are configured to support dynamic scaling. This might include settings related to instance count, scaling rules, and other parameters that control how your app scales.

    Code Configuration: Make sure your code is designed to handle scaling events. This includes handling state management, session persistence, and other factors that might be affected by scaling.

    Monitoring and Alerts: Set up monitoring and alerts to track the performance and scaling behavior of your app. This will help you identify any issues and make necessary adjustments.


  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

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