Skip to content

Commit 30ea17e

Browse files
committed
acrolinx
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 2d4631b commit 30ea17e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/container-apps/workflows-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ ms.reviewer: cshoe, hannahhunter
1717
1818
Workflows are multi-step operations that usually occur in a specific order or involve long-running tasks. Real-world scenarios requiring workflows include:
1919
- Order processing
20-
- Orchestrating AI agents
20+
- AI agent orchestration
2121
- Infrastructure management
2222
- Data processing pipelines
2323

2424
Events like temporary infrastructure failures or dependency downtime can often interrupt workflow execution. To prevent interruptions, you can use *durable execution*, which continues from the point of failure instead of restarting.
2525

2626
## Durable execution
2727

28-
Durable execution provides a fault-tolerant approach to running code. It's designed to handle failures gracefully through automatic retries and state persistence. Durable execution is built on three core principles:
28+
Durable execution provides a fault-tolerant approach to running code and handles failures gracefully through automatic retries and state persistence. Durable execution is built on three core principles:
2929

3030
- **Incremental execution:** Each operation is executed independently and in order.
31-
- **State persistence:** The output of each step is saved to ensure progress is not lost.
31+
- **State persistence:** The output of each step is saved to ensure progress isn't lost.
3232
- **Fault tolerance:** If a step fails, the operation is retried from the last successful step, skipping previously completed steps.
3333

3434
Durable execution benefits scenarios requiring stateful chaining of operations. It simplifies the implementation of complex, long-running, stateful, and fault-tolerant application patterns.

0 commit comments

Comments
 (0)