retry_circuit_create
Create a circuit breaker to handle failures by opening after consecutive failures and resetting after a timeout, enabling controlled retry mechanisms.
Instructions
[retry] Create a named circuit breaker. The circuit opens (trips) after max_failures consecutive failures and stays open until reset_timeout_seconds have elapsed, then allows a single trial call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| max_failures | No | ||
| reset_timeout_seconds | No |