When to Use
Use this skill when a trading process makes synchronous calls to a downstream service it does not control — a reference-data or corporate-action API, a historical/alt-data vendor, a sentiment endpoint, an internal risk-annotation microservice — and that service can become slow or unavailable without the trading system being obliged to stop.
The failure this prevents is not the failed call. It is the queue behind it: N threads blocked on a dependency that takes 30 seconds to time out will hold N connections, N threads and N slots in whatever pool they came from, and the outage propagates into components that never touched the sick service. The breaker converts a slow failure into a fast, explicit one that the caller can handle — cached value, degraded mode, skip.
CircuitBreaker in scripts/circuit_breaker.py is the reference implementation:
thread-safe, monotonic-clocked, with a single-probe HALF_OPEN, escalating backoff, and
optional slow-call detection.
When NOT to Use
- On the order path. Never wrap order submission, order cancellation, or a kill
switch. Fast-failing a cancel is strictly worse than failing slowly: it turns a slow
dependency into an uncancelled live order. For an EU/UK firm in scope of MiFID II RTS 6,
Article 12 requires the ability to cancel unexecuted orders immediately as an emergency
measure; a client-side breaker in front of that path works against the obligation. See
references/standards.md. - In front of mandatory pre-trade risk controls. A US broker-dealer's SEC Rule 15c3-5 controls must be applied, not skipped because a service was slow. If a required check cannot run, the correct behaviour is to stop trading, not to fail open.
- When the caller has no fallback. A breaker that raises into code which has no
degraded path has only moved the outage earlier. Decide what happens on
CircuitBreakerOpenExceptionbefore installing the breaker. - When the failure is deterministic. HTTP 400, malformed symbol, bad credentials, insufficient funds — these fail identically forever. Opening a circuit on them delays the fix and hides the real error.
- Across independently failing resources. One breaker over several venues, shards or accounts blocks healthy ones because an unhealthy one failed. One breaker per resource that can fail on its own.
- Instead of a timeout. The breaker cannot interrupt a call already in flight; see Prerequisites.
Prerequisites
- A client-side timeout on every wrapped call. This is the hard prerequisite. The
breaker only learns of a failure when the call raises; with no timeout the first
failure_thresholdthreads block indefinitely and the circuit never opens. Inrequests, that is an explicittimeout=(connect, read)— the library has no default. - A decided fallback for the open state: last-known-good cached value, degraded feature, skipped enrichment, or a deliberate halt.
- The correct exception tuple.
expected_exceptionsmust name infrastructure faults only. Note thatrequestsexceptions do not derive from the builtinTimeoutError/ConnectionError, so the default tuple will not catch them. - Per-dependency instances, one per independently failing resource, held for the process lifetime — a breaker constructed per call remembers nothing.
- Somewhere for state changes to go: a metrics gauge and an alert. A circuit that opens silently is an outage nobody is investigating.
Workflow
- Confirm the call is optional. If the trading loop cannot proceed without the answer, a breaker converts a slow degradation into a fast one — that may still be the right call, but the correct response to the open circuit is then to halt, not to continue with missing data. Order and cancel paths are out of scope entirely.
- Set the client timeout first, and set it shorter than the loop's tolerance. The breaker is what stops you making the call; the timeout is what stops it hanging.
- Choose the exception tuple against the actual client library. With
requests, pass(requests.Timeout, requests.ConnectionError). Do not passrequests.RequestExceptionorOSError: both subsumerequests.HTTPError, so a deterministic HTTP 400 raised byraise_for_status()would open the circuit. - Size the threshold against the call rate, not against a feeling. A 3-failure
threshold on a service called 500 times a second opens in milliseconds of noise; the
same threshold on a once-a-minute call takes three minutes to react. Use
failure_window_secwhen the call is infrequent, so evidence from an hour ago does not combine with today's. - Decide whether slow counts as failed. For a service whose whole value is
timeliness, set
slow_call_duration_secbelow the client timeout. Without it, a dependency that answers correctly but far too late never trips anything. - Wrap the call with
call(),decorate(), or theguard()context manager. Never hold a position-, order- or lock-bearing resource across the wrapped call. - Handle
CircuitBreakerOpenExceptiondistinctly from the dependency's own errors. The former means nothing was attempted — the fallback is safe and no request reached the service. The latter means the request may well have been received. For anything with a side effect, that distinction decides whether a retry is safe. - Do not retry into an open circuit. If a retry layer sits above the breaker, it
must treat
CircuitBreakerOpenExceptionas terminal for that attempt and back off, not consume its retry budget against a breaker that is refusing by design. - Let recovery be a single probe.
half_open_max_calls=1is the default for a reason: a recovering service that gets the entire backlog on the first successful response goes straight back down. Raisehalf_open_success_thresholdfor a dependency known to flap. - Publish
snapshot()as a gauge and alert on the OPEN transition, usingon_state_change. Includeretry_after_secandtotal_short_circuits— the count of calls the breaker refused is the number your business logic silently degraded. - Keep a manual override.
force_open()takes a known-bad dependency out of the path without a deployment;reset()restores service without waiting out an escalated backoff. Both belong behind the same access control as any other live-trading control.
Full procedure, including tuning and monitoring: see
references/workflows.md. Engineering standards and the regulatory boundary: seereferences/standards.md. Printable pre-flight checklist: seeassets/checklist.md.
Common Pitfalls
- No timeout on the wrapped client. The single most common way a circuit breaker provides no protection at all. Threads pile up on a hung socket, nothing raises, the circuit stays CLOSED, and the process dies exactly as it would have without it. Microsoft's Azure Architecture Center lists this failure explicitly.
- Catching too much.
expected_exceptions=(Exception,)— a tempting default, and the one this skill's implementation used to ship — counts aValueErrorfrom your own parsing code as evidence the dependency is down. The breaker then hides your bug behind a fake outage. - Catching the wrong hierarchy.
requests.ConnectionErroris not a subclass of the builtinConnectionError, andrequests.Timeoutis not a subclass ofTimeoutError; both derive fromRequestException(OSError). A tuple of builtins silently never fires againstrequests. ConverselyOSErrorcatches everythingrequestsraises — includingHTTPErrorfor a 4xx. - Counting cumulative rather than consecutive failures. A counter that never resets on
success trips on three unrelated blips spread across a session. Reset on success, and
age out stale evidence with
failure_window_sec. - Using
time.time()for the recovery timer. A wall clock steps. An NTP correction can make the recovery window appear to have elapsed instantly, or to never elapse. Usetime.monotonic(). - A HALF_OPEN state with no lock. Without one, every thread waiting on the open circuit becomes a probe the moment the timer expires, and the recovering service is flooded by exactly the herd the pattern exists to prevent.
- A fixed recovery timeout against a flapping dependency. The circuit thrashes OPEN → HALF_OPEN → OPEN forever at a constant rate. Escalate the timeout on each re-open, and add jitter when many processes share the same dependency — otherwise the whole fleet probes on the same second.
- Treating a per-process breaker as a global one. Twenty processes with
half_open_max_calls=1send twenty probes per window. If the dependency cannot take that, the coordination has to live outside the process. - Nested breakers that cascade. If an outer breaker counts the inner breaker's
CircuitBreakerOpenExceptionas a failure, one sick leaf dependency opens every circuit above it. The reference implementation never counts it, whatever the exception tuple says. - Swallowing the open-circuit exception. Degrading silently is how a strategy runs a full session on stale reference data. Log it, count it, alert on the transition.
- Assuming an open circuit means the request never happened at the venue. It means this process did not send it. That is only the same thing if nothing else — a retry layer, a sibling process, an earlier attempt — already did.
Verification
- Run the unit suite and confirm every test passes:
python -m unittest discover -s skills/circuit-breaker-for-downstream-service-calls/scripts - Wrap a callable that always raises
ConnectionError, call itfailure_thresholdtimes, then assert that the next call raisesCircuitBreakerOpenExceptionand that the callable's invocation counter did not increase — proving no I/O was attempted. - Interleave a success between failures and assert the circuit stays CLOSED; a breaker that opens here is counting cumulatively.
- Drive the recovery timeout with an injected clock, not
sleep. Assert the probe is refused att = timeout - εand admitted att = timeout. - Fail the probe and assert the next window is
backoff_multipliertimes longer, and that it returns to the base timeout once the circuit closes. - Start a slow probe in one thread and assert a concurrent call is refused with
state == HALF_OPEN— this is the single-probe guarantee, and it is the property a lock-free implementation silently loses. - Raise a business exception through the breaker and assert
failure_countis unchanged. - Point the breaker at a real staging endpoint, kill the endpoint, and confirm the alert
fires from
on_state_changeand the gauge reflects OPEN in your dashboard — an untested alert path is the normal reason an open circuit goes unnoticed.
Related Skills
graceful-degradation-to-polling-fallbackvendor-outage-fallback-data-source-hierarchygraceful-degradation-priority-during-partial-outagesmart-order-router-failover-on-venue-outagebroker-status-page-monitoring-integrationmulti-broker-rate-limit-handlingchaos-engineering-for-trading-infrastructurekill-switch-and-drawdown-circuit-breakersorder-placement-idempotencylog-aggregation-and-centralized-observability