MediumRate Limiting & ThrottlingMultiple Choice
How does Rate Limiting & Throttling handle failures?
— Tests your understanding of this concept.
Answer Options
ARetry with exponential backoff
BCircuit breaker pattern
CGraceful degradation
DStrategy depends on the system requirements
Want to see the correct answer?
Get the answer with a detailed explanation, plus practice 20+ more Rate Limiting & Throttling questions with adaptive quizzes and timed interviews.
See the Answer on Guru Sishya →This question is from the Rate Limiting & Throttling topic (System Design).
More Rate Limiting & Throttling Questions
What HTTP status code should a rate limiter return when a limit is exceeded?
EasyWhich rate limiting algorithm allows a burst of requests followed by a sustained rate?
Medium-EasyThe leaky bucket algorithm smooths output regardless of input burst rate.
EasyExplain the boundary burst problem with fixed window rate limiting.
Medium-EasyImplement a token bucket rate limiter in Redis that allows 10 RPS with burst of 50.
Medium