Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 878 Bytes

AWS_Limitations.md

File metadata and controls

29 lines (15 loc) · 878 Bytes

AWS Limitations to keep an eye when interacting with SDK

S3

ListObjectsV2 - Up to 1000

Returns max of 1000 objects in a bucket with each request.

Solution:

If there are more objects to retrieve, continue making requests until all objects are retrieved by checking for IsTruncated, which will determine if there are more objects to retrieve.

Ref:

API Gateway

Default limit for Lambda invocation

API Gateway requests will timeout after 29 sec for lambda invocations which cannot be changed. API gateway will throw 504 timeout error if not responded within 29 secs.

Solution:

Ref: