Bird
0
0

Given a usage plan with a quota limit of 1000 requests per day and a throttle rate limit of 100 requests per second, what happens if a client sends 150 requests in one second?

medium📝 Predict Output Q4 of 15
AWS - API Gateway
Given a usage plan with a quota limit of 1000 requests per day and a throttle rate limit of 100 requests per second, what happens if a client sends 150 requests in one second?
AAll requests are queued and delayed
BAll 150 requests succeed
C50 requests are throttled and rejected
DThe quota limit is immediately exceeded
Step-by-Step Solution
Solution:
  1. Step 1: Understand throttle rate limit effect

    The throttle rate limit allows only 100 requests per second; excess requests are rejected.
  2. Step 2: Analyze client request count

    Client sent 150 requests; 50 exceed the 100 requests/second limit and are throttled.
  3. Final Answer:

    50 requests are throttled and rejected -> Option C
  4. Quick Check:

    Throttle excess requests = Rejected [OK]
Quick Trick: Throttle limits reject excess requests instantly [OK]
Common Mistakes:
  • Assuming all requests succeed ignoring throttle
  • Thinking requests queue automatically
  • Confusing quota with throttle limits

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes