06
How do you handle a cascading failure?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would first stop the spread by reducing load, isolating failing components, or triggering fallback behavior. Then I would look for the root cause, such as a dependency outage, retry storm, or resource exhaustion. The reason I choose this approach is that cascading failures often get worse when systems keep retrying blindly. I would also think about circuit breakers, backpressure, and graceful degradation. If the interviewer wants more detail, I would explain how I would design the system to make cascading failures less likely in the first place.