Skip to main content

3 docs tagged with "retry"

View All Tags

Durable API Polling

Poll an API on a schedule and process only new items, retrying only the items that fail — never the whole batch and never silently dropping a failure. Durable id-based dedupe via the state feature plus lookup_partition per-item retry. Includes a self-contained demo and a production poller template.

Flow Control

Flow-control recipes for Air Pipe pipelines: throttle with the delay action, retry with exponential backoff, branch with run_on_assertion, try/catch/finally recovery, and at_least quorum. Every endpoint is self-contained — no external services, databases, or managed variables required.

Resilient HTTP

Call someone else's API and survive it. Declare which statuses count as success with expect_status, retry only what could plausibly succeed, send an Idempotency-Key so a retried POST cannot charge twice, and read a 404 or a 402 as data instead of an error. Self-contained: the examples call fixture routes on the same engine, so it deploys and curls with no external service, keys or database.