Skip to content Skip to sidebar Skip to footer

Flask On Aws Lambda Http Content Length Exceeded 10485760 Bytes

I just figured out that my flask app cannot handle a certain amount of file size while uploading through an http form : HTTP content length exceeded 10485760 bytes. How can I rais

Solution 1:

The size limit shared by you looks like of API gateway i.e. around 10MB. (API Gateway limits)

AWS Lambda payload size limit is 6MB.

Both of these limits cannot be changed. I was not able to find any limitations for ALB so you can think of using ALB in your application.

Post a Comment for "Flask On Aws Lambda Http Content Length Exceeded 10485760 Bytes"