What is the maximum limit of Temp directory in Azure Functions on a Consumption plan?
azure, azure-functions
Solution
There is a 500MB limit on %temp% files in the Consumption plan. See here for more info.
And of course, avoid making assumptions on those files being there from one call to another. But they can be used for temporary storage within the execution of a request. Or potentially as a cache between requests, as long as you have a fall back if they're not there.
Problem
I am working in Azure functions and am on a consumption plan, I have some files that I need in the %temp% directory. What is the maximum size of folder allowed for it? My files would be about 2GB if it means anything. I need them there because I have to perform some operation on them.