Traefik

Missing circuit breaker allows retry amplification to failing backends

critical
availabilityUpdated Jan 23, 2026(via Exa)
Technologies:
How to detect:

Backend service experiences sustained failures, but retry middleware continues sending repeated requests without circuit breaker protection, amplifying load and preventing recovery.

Recommended action:

Apply circuit breaker middleware after retry middleware in the middleware chain. Configure expression like 'NetworkErrorRatio() > 0.50' to open circuit when error rate exceeds 50%. Ensure correct middleware ordering: retry first, then circuit-breaker.