Bird
0
0

You want to ensure a Lambda function can handle sudden bursts of traffic without cold starts and throttling. Which combination should you use?

hard📝 Application Q8 of 15
AWS - Lambda
You 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.
Step-by-Step Solution
Solution:
  1. Step 1: Understand provisioned concurrency role

    Provisioned concurrency keeps function instances warm to avoid cold starts.
  2. Step 2: Understand reserved concurrency role

    Reserved concurrency guarantees capacity to handle burst without throttling.
  3. Step 3: Combine both for burst handling

    Setting both to burst size ensures warm instances and reserved capacity.
  4. Final Answer:

    Set provisioned concurrency and reserved concurrency to the burst size. -> Option B
  5. Quick Check:

    Provisioned + reserved concurrency = burst readiness [OK]
Quick Trick: Use provisioned + reserved concurrency to handle bursts smoothly [OK]
Common Mistakes:
MISTAKES
  • Using only reserved concurrency causes cold starts
  • Using only provisioned concurrency risks throttling
  • Relying on default scaling for sudden bursts

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes