Bird
0
0

If API Gateway throttling is set to rateLimit = 200 and burstLimit = 100, what is the maximum number of requests allowed in 1 second?

medium📝 Predict Output Q5 of 15
AWS - API Gateway
If API Gateway throttling is set to rateLimit = 200 and burstLimit = 100, what is the maximum number of requests allowed in 1 second?
A200 requests
B250 requests
C300 requests
D100 requests
Step-by-Step Solution
Solution:
  1. Step 1: Understand rate and burst limits

    Rate limit is steady requests per second; burst limit allows extra requests in a short burst.
  2. Step 2: Calculate max requests in 1 second

    Max = rateLimit + burstLimit = 200 + 100 = 300 requests.
  3. Final Answer:

    300 requests -> Option C
  4. Quick Check:

    Max requests = rate + burst = D [OK]
Quick Trick: Max requests = rateLimit + burstLimit [OK]
Common Mistakes:
MISTAKES
  • Ignoring burst limit in calculation
  • Adding limits incorrectly
  • Assuming burst limit replaces rate limit

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes