Azure Web app save temporary files limit

Dan

I have need to store files temporary on my Azure web app (app service). I don't have to share these files between web app instances.

I have read (in the kudu wiki) that I can use the d:\local for such storage, but what limitations exists regarding the amount of data that can be stored there?

I have also read that it depends on the selected level (sku) of the web app (Basic, standard, premium) but I have not found any exact size limitations.

Is there any way to determine this in runtime using code?

UPDATE:
When I check the the Environment tab in Kudo on my Basic web app it lists

D:\home usage: 10,240 MB total; 10,072 MB free 
d:\local usage: 230,397 MB total; 198,341 MB free 

But if I do a check using System.IO.DriveInfo.GetDrives() the D drive lists as

d:\ usage: 32,768 MB total;  12,083 MB free

(Kudo shows a lot more than that for the d:\local drive.)
Another peculiar thing is that you can navigate the filesystem in the Kudo console but the files I create on the web app can not be found there.

David Ebbo

This Kudu wiki page has more info about it. Copying from there in the Temporary Files section:

For Free and Shared sites, there is a 500MB limit for all these locations together (i.e. not per-folder). For Standard and Basic sites, the limit is very high (over 100GB).

Also, if you go to the Environment tab in Kudu, it tells you how much space is available (you care about d:\local), e.g.

D:\home usage: 1,024 MB total; 616 MB free d:\local usage: 500 MB total; 499 MB free

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Where should I save temporary files of the app I am developing?

From Dev

Where to save/extract files on Azure Web Sites?

From Dev

Storing images on Azure web app. File system limit and performance?

From Dev

Windows Azure Web App File Storage Limit Quota

From Dev

How to save file in Temporary Internet Files

From Dev

Where to save temporary files for shell scripts

From Dev

Azure Web App: Delete all files before publish

From Dev

Not all files are showing up in ftp session with Azure Web App

From Dev

Not all files are showing up in ftp session with Azure Web App

From Dev

Connection reset when uploading files to Azure Web App over HTTPS

From Dev

Azure Web App doesn't build typescript files

From Dev

Save Site as Template Programatically - Error generating solution files in temporary directory

From Dev

Where does Google Chrome save temporary pdf files?

From Dev

How to create and save a temporary file on Microsoft Azure virtual server

From Dev

ionic download file, save to temporary filesystem and open with default app

From Dev

Dynamically save files in web application

From Dev

Azure web app tedious

From Dev

Save Session State for web app

From Dev

Is there a limit on the number of sessions for Azure Web SQL Database?

From Dev

How to restore a store application temporary files after uninstalling the app?

From Dev

What is the limit of number of resource files on an iOS app?

From Dev

What is the limit of number of resource files on an iOS app?

From Dev

Azure App services "Data out" exceeded the limit?

From Dev

Azure Mobile App service query limit

From Dev

Limit web service access to only one app

From Dev

How can I delete existing files when deploying an ASP.Net 5 Web App to Azure

From Dev

Confusion between .config files and Azure settings on ASP.Net core web app

From Java

Temporary save Image in pygame

From Dev

Azure Web App not autoscaling in time

Related Related

  1. 1

    Where should I save temporary files of the app I am developing?

  2. 2

    Where to save/extract files on Azure Web Sites?

  3. 3

    Storing images on Azure web app. File system limit and performance?

  4. 4

    Windows Azure Web App File Storage Limit Quota

  5. 5

    How to save file in Temporary Internet Files

  6. 6

    Where to save temporary files for shell scripts

  7. 7

    Azure Web App: Delete all files before publish

  8. 8

    Not all files are showing up in ftp session with Azure Web App

  9. 9

    Not all files are showing up in ftp session with Azure Web App

  10. 10

    Connection reset when uploading files to Azure Web App over HTTPS

  11. 11

    Azure Web App doesn't build typescript files

  12. 12

    Save Site as Template Programatically - Error generating solution files in temporary directory

  13. 13

    Where does Google Chrome save temporary pdf files?

  14. 14

    How to create and save a temporary file on Microsoft Azure virtual server

  15. 15

    ionic download file, save to temporary filesystem and open with default app

  16. 16

    Dynamically save files in web application

  17. 17

    Azure web app tedious

  18. 18

    Save Session State for web app

  19. 19

    Is there a limit on the number of sessions for Azure Web SQL Database?

  20. 20

    How to restore a store application temporary files after uninstalling the app?

  21. 21

    What is the limit of number of resource files on an iOS app?

  22. 22

    What is the limit of number of resource files on an iOS app?

  23. 23

    Azure App services "Data out" exceeded the limit?

  24. 24

    Azure Mobile App service query limit

  25. 25

    Limit web service access to only one app

  26. 26

    How can I delete existing files when deploying an ASP.Net 5 Web App to Azure

  27. 27

    Confusion between .config files and Azure settings on ASP.Net core web app

  28. 28

    Temporary save Image in pygame

  29. 29

    Azure Web App not autoscaling in time

HotTag

Archive