Lambda Flashcards
What is Lambda provisioned concurrency?
Provisioned concurrency initializes a requested number of execution environments so that they are prepared to respond immediately to your function’s invocations. Note that configuring provisioned concurrency incurs charges to your AWS account.
What is Lambda reserved concurrency?
Reserved concurrency guarantees the maximum number of concurrent instances for the function. When a function has reserved concurrency, no other function can use that concurrency. There is no charge for configuring reserved concurrency for a function.
Is it possible to scale Lambda provisioned concurrency?
Application Auto Scaling allows you to manage provisioned concurrency on a schedule or based on utilization.
Is it possible to scale Lambda reserved concurrency on a schedule?
You cannot configure Application Auto Scaling to manage Lambda reserved concurrency on a schedule.
How can you test the Lambda functions running on containers locally?
You can test the containers locally using the Lambda Runtime Interface Emulator.
What is the maximum Lambda container image size?
Lambda supports a maximum uncompressed image size of 10 GB, including all layers.
What one shoud do to troubleshoot any failures in Lambda functions?
One should insert logging statements in the Lambda function code
In which use case you can create Dead Letter Queue (DLQ) for AWS Lambda functions: synchronous or asynchronous?
All asynchronous invocations, including those delivered via AWS events (S3, SNS, IoT, etc).
What is the maximum total size of all environment variables for a Lambda function?
4 KB