Medium1 markMultiple Choice
AWS SAA-C03 · Question 51 · Domain 3.2: Compute Performance
A serverless application uses AWS Lambda. During sudden traffic spikes, users experience high latency because Lambda functions take time to initialize (cold starts). Which TWO features can be used to mitigate this issue? (Select TWO.)
A serverless application uses AWS Lambda. During sudden traffic spikes, users experience high latency because Lambda functions take time to initialize (cold starts). Which TWO features can be used to mitigate this issue? (Select TWO.)
Answer options:
A.
Provisioned Concurrency
B.
Reserved Concurrency
C.
Keep-alive ping via EventBridge
D.
Lambda Layers
E.
Increase the function timeout.
How to approach this question
Identify methods to keep Lambda execution environments warm.
Full Answer
Provisioned Concurrency, Keep-alive ping via EventBridge
Provisioned Concurrency initializes a requested number of execution environments so that they are prepared to respond immediately. Alternatively, a common pattern is to use EventBridge to 'ping' the function every few minutes to keep it warm.
Common mistakes
Confusing Reserved Concurrency (limits) with Provisioned Concurrency (warm starts).
Practice the full AWS SAA-C03 Practice Exam 5
65 questions · hints · full answers · grading
More questions from this exam
Q01A company needs to grant an external auditor read-only access to specific AWS resources. The audi...EasyQ02An application running on EC2 instances needs to access objects in an S3 bucket. The security tea...MediumQ03A company is designing a VPC for a multi-tier web application. They need to block specific malici...MediumQ04A large enterprise uses AWS Organizations to manage multiple accounts. The security team wants to...HardQ05A company hosts a web application on an Application Load Balancer (ALB). They are experiencing SQ...Medium
Expert