Storage is not configured properly, Function scaling will be limited.

@EliteDynamite 0 Reputation points
2023-07-11T22:06:50.0933333+00:00

Storage is not configured properly, Function scaling will be limited. Click to learn more.

Even after adding the storage account details in configuration -> app settings -> AzureWebJobsStorage: connection string

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,331 questions
Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,327 questions
{count} votes

1 answer

Sort by: Most helpful
  1. navba-MSFT 27,260 Reputation points Microsoft Employee
    2023-07-12T06:27:58.39+00:00

    @@EliteDynamite Welcome to Microsoft Q&A Forum, Thank you for posting your query here!

    I understand that you are encountering the error Storage is not configured properly, Function scaling will be limited.

    I also see that you have tried adding the storage account details in configuration -> app settings.

    Every function app requires a storage account to operate since Function code files are stored on Azure Files shares on the function's main storage account. If that account is deleted, your functions won't work.

    Please open the Azure Function App in the portal and go to the App Setting. Start by looking up your storage account name in your application settings. WEBSITE_CONTENTAZUREFILECONNECTIONSTRING should contain the name of your storage account as part of a connection string and WEBSITE_CONTENTSHARE has the name of the file share (if you are using consumption or premium plan). For more information, see App settings reference for Azure Functions.

    Search for your storage account in the Azure portal to see whether it still exists. If it has been deleted, re-create the storage account and replace your storage connection strings. Also ensure that the Storage account isn't part of a VNET or have the Firewall enabled.

    Sharing some of the related issues here, if that helps:
    https://stackoverflow.com/questions/75313919/azure-functions-scaling-error-on-azure-portal
    https://stackoverflow.com/questions/70984559/azure-function-seems-to-be-running-fine-on-app-service-plan-but-azure-warns-that

    Please let me know if you still face the issue even after following the above plan.

    0 comments No comments

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.