Skip to main content

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

  1. Define transient failure conditions (timeout/5xx).
  2. Add bounded retry logic and delay where required.
  3. Configure fallback path (alternate backend or graceful response).
  4. Standardize error body and status in response_node.

Verify

  • Simulated timeout follows retry then fallback path
  • Fallback response is deterministic and logged