Skip to content
AGNT

A circuit breaker is a failure-isolation pattern that stops calling a downstream service once it fails too often, giving it time to recover.

Definition

Last verified: April 2026

What is Circuit Breaker?

A circuit breaker is a failure-isolation pattern that stops calling a downstream service once it fails too often, giving it time to recover.

AGNT runs two breakers side by side. A global breaker opens after five failures anywhere in a ten-minute window and blocks all A2A dispatch for five minutes. A per-venue breaker does the same at the single-tenant level, so one broken venue never cascades into platform downtime.

Both breakers honour a half-open state: after the cooldown, exactly one probe envelope is allowed through. If it succeeds, the breaker closes and traffic resumes; if it fails, the cooldown restarts. State is held in Redis so that restarts do not lose memory of recent failures.

FAQ

Circuit Breaker FAQ.

Common questions about Circuit Breaker in the AGNT platform.

A circuit breaker is a failure-isolation pattern that stops calling a downstream service once it fails too often, giving it time to recover.

People also ask.

Share as social post

What is Circuit Breaker? A circuit breaker is a failure-isolation pattern that stops calling a downstream service once it fails too often, giving it time to recover. https://agntdot.com/glossary/circuit-breaker

211 / 280 chars

See it in action.

Now you know what Circuit Breaker means. Try the live scan demo or read the developer docs to go deeper.