Skip to content

Bulkhead

One slow dependency can sink a whole client: if every worker blocks on the slow call, fast calls starve behind them. A bulkhead caps concurrency to that dependency — excess calls fail fast with BulkheadFullError instead of piling up and exhausting the client.