Triggers get lost when new lambda instances cannot be spawned?

I would like to call the Amazon Lambda function for each new object loaded into the S3 bucket. However, I am concerned that new instances may fail if more than 100 objects are loaded immediately. This is because lambda has a default concurrency limit of 100 Lambda instances. This means that new instances will not immediately appear.

+4
source share
1 answer

No, events are not lost when the lambda reaches the execution limit.

Amazon S3 , , , (.. 100 ), , .

.

+4

Source: https://habr.com/ru/post/1670007/


All Articles