Async Job Polling
Wait for a long-running job without holding a request open. Submit the work, poll until it reports done, and suspend the run between polls so nothing is held open and a restart does not lose it.
Wait for a long-running job without holding a request open. Submit the work, poll until it reports done, and suspend the run between polls so nothing is held open and a restart does not lose it.
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.