Reputation: 23256
What is the request-payload limit with AWS API-Gateway?
I need to send a JSON payload with base64
encoded files and some other parameters to API Gateway, that will then pass on the payload to AWS Lambda.
I could not find AWS documentation regarding this.
Upvotes: 41
Views: 90517
Reputation: 5729
One Interesting thing that I have done which has solved my problem, I think it will be worth sharing because it may solve some use cases for others.
I know my case was bit different where client data in POST
.
method POST
URL something/createObj
This API was invoked by not human beings but a warehousing
system for sending logistics consignments
.
This is how we have implemented.
data Zip compress
that reduces the size approx 90%.label pdf
again zip compressed
.unzip
and process further.Very interesting case to workaround api gateway
and lamdba
limits. :)
Upvotes: 0
Reputation: 8541
Maximum payload to API gateway is 10 MB and maximum payload for Lambda is 6 MB, which cannot be increased.
Please see API gateway payload limits here
Please see Lambda payload limits here
But there is an alternative way (a work around) to achieve the same by uploading data to an S3 bucket if your size is more that 10 MB. Please read the below article for details (Unofficial document):
https://sookocheff.com/post/api/uploading-large-payloads-through-api-gateway/
Upvotes: 68
Reputation: 14029
The API Gateway has a request size limit of 10MB.
Amazon API Gateway Limits, Pricing and Known Issues
The more important limit in your scenario is the lambda size limit which is only 6 MB.
Upvotes: 9