Search code examples
azure-devopsazure-functionsazure-app-service-plansazure-appserviceazure-app-service-envrmnt

App service plans file system storage limit exceeded 500GB


We are using 9 functions apps with individual app service plan for each. 8 out of the 9 plans are standard plans which uses 50GB storage and 1 premium plan which has 250GB as file storage. Now we are trying to deploy new function app with new app service plan but we are getting error in devops like "storage usage quota exceeded 500GB". Can we increase this size limit or any other solution for it?error image


Solution

  • As mentioned in the MS Doc, the storage limit is the total content size across all apps in the same App service plan. The total content size of all apps across all App service plans in a single resource group and region cannot exceed 500 GB. The file system quota for App Service hosted apps is determined by the aggregate of App Service plans created in a region and resource group.

    • If possible, check by deploying in another region of the app service plan in same resource group.
    • Try clearing the unnecessary logs in the storage accounts associated with your function apps.

    Can we increase this size limit or any other solution for it?

    Other than Premium App Service Plan (250 GB), there is only one i.e., Isolated App Service Plan Provides 1 TB of Storage.

    To get more information about Isolated App Service Plan, visit this reference.

    Also, If any issues in raising the storage limit, please raise a request to Microsoft support.