AWS - LambdaYou want to ensure a Lambda function can handle sudden bursts of traffic without cold starts and throttling. Which combination should you use?ASet reserved concurrency only to the burst size.BSet provisioned concurrency and reserved concurrency to the burst size.CSet provisioned concurrency only to the burst size.DSet no concurrency limits and rely on default scaling.Check Answer
Step-by-Step SolutionSolution:Step 1: Understand provisioned concurrency roleProvisioned concurrency keeps function instances warm to avoid cold starts.Step 2: Understand reserved concurrency roleReserved concurrency guarantees capacity to handle burst without throttling.Step 3: Combine both for burst handlingSetting both to burst size ensures warm instances and reserved capacity.Final Answer:Set provisioned concurrency and reserved concurrency to the burst size. -> Option BQuick Check:Provisioned + reserved concurrency = burst readiness [OK]Quick Trick: Use provisioned + reserved concurrency to handle bursts smoothly [OK]Common Mistakes:MISTAKESUsing only reserved concurrency causes cold startsUsing only provisioned concurrency risks throttlingRelying on default scaling for sudden bursts
Master "Lambda" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes API Gateway - Resources and methods - Quiz 1easy API Gateway - Request and response mapping - Quiz 12easy API Gateway - REST API creation - Quiz 12easy AWS Lambda - Creating a Lambda function - Quiz 13medium Auto Scaling - Cooldown periods - Quiz 9hard Auto Scaling - Launch templates - Quiz 6medium DynamoDB - Creating a DynamoDB table - Quiz 14medium Elastic Load Balancing - Health checks configuration - Quiz 11easy Elastic Load Balancing - Cross-zone load balancing - Quiz 7medium SNS and SQS - SNS notification types (email, SMS, Lambda) - Quiz 13medium