What happens when my account surpasses the default threshold limit on the executions?

devquora
devquora

Posted On: Mar 21, 2024

 

Upon exceeding the threshold limit, the AWS Lambda functions are being called synchronously and will return a threshold error (429 error- code). The tasks of Lambda functions that are called asynchronously shall absorb the reasonable traffic bursts for 15-30 minutes, after which the incoming events shall be rejected as they are throttled. In case the Lambda function is being called in response to the Amazon S3 events, events that are rejected by AWS Lambda may be retained back and retried by S3 for 24 hours. The events coming from streams of Amazon Kinesis and Amazon DynamoDB are retried along as the Lambda function doesn’t succeed, or the data doesn’t expire. Amazon Kinesis and Amazon DynamoDB Streams hold the data for 24 hours.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    AWS Lambda Interview Questions

    What does AWS Lambda mean?

    AWS Lambda is one the best compute service in the market, which is serverless. It allows you to run codes without the h..

    AWS Lambda Interview Questions

    What restrictions apply to AWS Lambda function code?

    Lambda imposes very few restrictions on operating system activities and standard language. However, there are few of th..

    AWS Lambda Interview Questions

    How long can an AWS Lambda function execute?

    The complete execution has to take place within 300 seconds from placing the calls to AWS Lambda. 3 seconds is the defa..