Resiliency Template
Use this template for retry/fallback behavior when upstream services are unstable.
Default pattern
http_trigger -> http_request_node -> condition_node (error?) -> fallback branch -> response_node
Configure
- Define transient failure conditions (timeout/5xx).
- Add bounded retry logic and delay where required.
- Configure fallback path (alternate backend or graceful response).
- Standardize error body and status in
response_node.
Verify
- Simulated timeout follows retry then fallback path
- Fallback response is deterministic and logged