Downloading app content of a function App gives error 500, not enough space on the disk

Marin Binzari 20 Reputation points
2025-01-29T11:56:53.9033333+00:00

Hi there. I have a NodeJS Function App in Azure deployed via Azure Pipelines with SST. The App Service plan is a pay as you go whith sku: Y1 and Operating System: Windows

I wanted to download app content including app settings in order to run the function locally. When doing so, I receive error 500 and the details show:

Server Error in '/' Application. There is not enough space on the disk.

Screenshot:

User's image

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

Accepted answer
  1. Shireesha Eeraboina 1,550 Reputation points Microsoft Vendor
    2025-01-31T09:39:18.28+00:00

    Hi @Marin Binzari ,

    Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.

    The error message "There is not enough space on the disk" indicates that the disk space allocated for your Azure Function App is inadequate. This situation can arise when the application consumes all available disk space, especially in the temporary storage utilized by the Azure environment.

    • Check the disk usage of your Function App to identify what is using up space. You can use the Azure Portal to track the storage metrics. If there are any unnecessary files or logs, delete them to free up space.
    • If your application needs additional storage, consider setting up local storage resources to handle temporary files more efficiently.
    • For data that needs to be retained, utilize external storage solutions such as Azure Blob Storage or Azure SQL Database instead of depending on the local disk.

    If the problem continues after following these steps, you may need to upgrade your App Service plan to a higher SKU that offers additional resources.

    For your reference, please review the following documentations for further clarification:

    I hope this helps! Let me know if you have any further questions or need additional assistance.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

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.