configure_circuit_breaker
Set failure thresholds and exponential backoff parameters for circuit breakers to manage retry behavior and prevent cascading failures.
Instructions
Configure circuit breaker settings. Updates thresholds and backoff for all breakers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| backoffMaxMs | No | Maximum backoff cap in ms (default: 300000 = 5 min) | |
| backoffBaseMs | No | Exponential backoff base in ms (default: 5000). Set to enable backoff. | |
| resetTimeoutMs | No | Fixed timeout before half-open in ms (default: 30000) | |
| failureThreshold | No | Number of failures before opening (default: 5) | |
| backoffMultiplier | No | Exponential backoff multiplier (default: 2) |