Hello all. Is any of you aware of a size limit to ...
# help
e
Hello all. Is any of you aware of a size limit to what a lambda fucntion can output ? I have an API call that works fine for a 3.84MB json output but not for double that (7.6 MB). The lambda just fails returning ""Internal Server Error" without even throwing an exception as if this was happening beyond my lambda function code (since I have an exception catch there and it doesn't hit it)
Maybe i can find useful info in the AWS lambda logs... let me check that....
r
The various quotas are documented here
API GW here
s
The limit is 6MB @Erik Robertson
For request/response invocations
But for the event invocations, it is 256KB
e
ok thanks for the pointers. At least I understand why...
ö
@Serkan Özal Seems to be 10 MB in the link @Ross Coundon posted
s
@Ömer Toraman it is the API GW limit, but Lambda limit is 6MB as shown in the first link. So when you integrate Lambda with the API GW, the Lambda limit overrides it as it is lower so the effective limit becomes 6MB