Cognitive Scaffold

Preparing your thinking workspace

arrow_back_ios_new
MENTAL MODEL · M1141

Circuit Breaker Pattern

Circuit Breaker Pattern
BusinessHigh supportManagement
Included
account_tree

Version 1.0.0 · Updated 2026-07-30

CORE DEFINITION

When a service fails (e.g., response timeout) and the failure rate reaches a threshold, the system automatically cuts off calls to that service (trips the circuit), directly returning an error or fallback, giving the faulty service time to breathe and recover, preventing the entire system from collapsing.

SCAFFOLDING EFFECT

psychology

Reduce cognitive load

Stop-loss and self-healing. In investment or personal energy management, a 'circuit breaker' must be set. For example: force liquidation when losses reach 20%; force rest after 3 consecutive days of overtime. Prevent local failures from dragging down the whole.

anchor

Anchor fast decisions

A distributed system design pattern where calls to a remote service 'trip' and fail fast when consecutive failures reach a threshold, avoiding thread/resource exhaustion from slow calls, and giving the dependency time to recover before half-open probing.

MINIMUM ACTION

In progress 0/5

Practice this model in one real situation:

Check to track your progress (stored locally)
Learning progress0%
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more

Source support: Explicit

  • link
    en.wikipedia.orghttps://en.wikipedia.org/wiki/Circuit_breaker_design_patternZH · Explicit
    verified

RELATED MODELS