Skip to content

Commit 2b58aa7

Browse files
committed
comment for choose your own framework
Signed-off-by: Hannah Hunter <[email protected]>
1 parent ad080da commit 2b58aa7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/azure-functions/durable/durable-task-scheduler/choose-orchestration-framework.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,17 @@ ms.date: 05/06/2025
77

88
# Choosing an orchestration framework
99

10-
Azure offers two developer-oriented orchestration frameworks you can use to build apps: **Durable Task SDKs** and **Durable Functions**. In this article, you learn:
10+
Azure offers two developer-oriented orchestration frameworks you can use to build apps: **Durable Task SDKs** and **Durable Functions**. These frameworks simplify the implementation of application patterns involving complex, long-running, and multi-step operations by providing built-in state persistence and automatic retries. These frameworks ensure durable execution, meaning code can continue executing even with interruptions or infrastructure failures. Since all state information is persisted, execution continues in another process or machine from the point of failure.
11+
12+
In this article, you learn:
1113

1214
> [!div class="checklist"]
1315
> - The benefits of using an orchestration framework.
1416
> - Which framework works best for your scenario.
1517
1618
## Scenarios requiring orchestration
1719

18-
Application or orchestration patterns that benefit from the statefulness offered by an orchestration framework include:
20+
Application patterns that benefit from the Durable Task SDKs and Durable Functions include:
1921
- **Function chaining:** For executing sequential workflow steps in order, passing data between steps with data transformations at each step, and building pipelines where each activity builds on the previous one.
2022
- **Fan-out/fan-in:** For batch jobs, ETL (extract, transfer, and load), and any scenario that requires parallel processing.
2123
- **Human interactions:** For two-factor authentication, workflows that require human approval.

0 commit comments

Comments
 (0)