Hard1 markMultiple Choice
AWS SAA-C03 · Question 46 · Domain 3.2: Compute Performance
An application uses AWS Lambda functions to process images uploaded to S3. During marketing campaigns, thousands of images are uploaded simultaneously, causing the Lambda functions to hit the account concurrency limit and throttle other critical Lambda functions. How can this be prevented?
An application uses AWS Lambda functions to process images uploaded to S3. During marketing campaigns, thousands of images are uploaded simultaneously, causing the Lambda functions to hit the account concurrency limit and throttle other critical Lambda functions. How can this be prevented?
Answer options:
A.
Configure Provisioned Concurrency for the image processing Lambda function.
B.
Configure Reserved Concurrency for the image processing Lambda function.
C.
Increase the memory allocation for the Lambda function.
D.
Move the image processing to Amazon EC2.
How to approach this question
Identify the need to limit a specific Lambda function from consuming all account concurrency. Reserved Concurrency does this.
Full Answer
B.Configure Reserved Concurrency for the image processing Lambda function.✓ Correct
Configure Reserved Concurrency for the image processing Lambda function.
Reserved concurrency guarantees a specific number of concurrent executions for a function. Crucially, it also acts as a maximum limit. By setting reserved concurrency, you ensure the function cannot scale beyond that limit and consume the unreserved concurrency pool needed by other functions.
Common mistakes
Confusing Provisioned Concurrency (for cold starts) with Reserved Concurrency (for limits/guarantees).
Practice the full AWS SAA-C03 Practice Exam 3
65 questions · hints · full answers · grading
More questions from this exam
Q01A company stores sensitive documents in an Amazon S3 bucket. The security team requires that only...EasyQ02A large enterprise uses AWS Organizations to manage multiple accounts. The security team wants to...MediumQ03A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (AL...EasyQ04A company wants to continuously monitor its AWS accounts for malicious activity and unauthorized ...MediumQ05A company needs to encrypt data at rest in Amazon RDS and manage database credentials securely. T...Medium
Expert