16
How would you prevent a retry storm during an outage?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would add backoff, jitter, timeouts, and limits so clients do not keep hammering the failing dependency. I would also think about circuit breakers and whether the system should stop retrying once the error rate crosses a threshold. The reason I choose this approach is that retries can make an outage much worse if every client retries at the same time. I would also mention load shedding or degraded responses to protect the rest of the system. If the interviewer wants more detail, I would describe where retry logic should live.