#Azure Function: Max Body Size

1 messages · Page 1 of 1 (latest)

autumn condor
#

Hey all,

my web app (implemented using FastAPI / Python 3.11) is about uploading files & analyzing them.
I just experienced that the max size of my call to my Azure Function is about ~100MB.

Is there any way to increase this size? I need about ~1GB max size.
Yes, I could use blob storages, but I do not want anonymous access to this.

My function just receives this multipart encoded file and responses with data.

acoustic isle
#

You can require login on blob upload?

#

And trigger on the blob container changes

autumn condor
acoustic isle
#

https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#service-limits

Resource Consumption plan Premium plan Dedicated plan ASE Kubernetes
Default timeout duration (min) 5 30 301 30 30
Max timeout duration (min) 10 unbounded7 unbounded2 unbounded unbounded
Max outbound connections (per instance) 600 active (1200 total) unbounded unbounded unbounded unbounded
Max request size (MB)3 100 100 100 100 Depends on cluster

Learn how to choose between Azure Functions Consumption plan and Premium plan.

#

Sooo you can run your function in an AKS cluster 😛