circuit breaker
RU: circuit breaker
A resilience pattern that wraps calls to an external dependency and tracks failure rate. When failures exceed a threshold the breaker opens, rejecting calls immediately without hitting the dependency and giving it time to recover. After a timeout it enters half-open state: a probe request decides whether to close (recovered) or reopen (still failing).