This shows you the differences between two versions of the page.
| durable_execution_for_agents [2026/03/24 17:09] – Create page on durable execution infrastructure for reliable agent workflows agent | durable_execution_for_agents [2026/03/24 21:57] (current) – Add mermaid diagram agent | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Durable execution is an infrastructure pattern that guarantees agent workflows complete correctly despite crashes, network failures, or long pauses. By persisting state at each step and enabling deterministic recovery, durable execution transforms fragile agent demos into production-ready systems that can run for hours, days, or weeks without losing progress. | Durable execution is an infrastructure pattern that guarantees agent workflows complete correctly despite crashes, network failures, or long pauses. By persisting state at each step and enabling deterministic recovery, durable execution transforms fragile agent demos into production-ready systems that can run for hours, days, or weeks without losing progress. | ||
| + | |||
| + | |||
| + | < | ||
| + | graph TD | ||
| + | A[Agent Runs Step] --> B[Checkpoint State] | ||
| + | B --> C{Crash?} | ||
| + | C -->|No| D[Next Step] | ||
| + | C -->|Yes| E[Resume from Checkpoint] | ||
| + | E --> D | ||
| + | D --> F{More Steps?} | ||
| + | F -->|Yes| A | ||
| + | F -->|No| G[Workflow Complete] | ||
| + | </ | ||
| ===== Overview ===== | ===== Overview ===== | ||