Skip to content

Commit f94f6ee

Browse files
committed
acrolinx
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 516c3db commit f94f6ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure offers two developer-oriented orchestration frameworks you can use to buil
1616
## Scenarios requiring orchestration
1717

1818
Application or orchestration patterns that benefit from the statefulness offered by an orchestration framework include:
19-
- **Function chaining:** For executing sequential workflo steps in order, passing data between steps with data transformations at each step, and building pipelines where each activity builds on the previous one.
19+
- **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.
2020
- **Fan-out/fan-in:** For batch jobs, ETL (extract, transfer, and load), and any scenario that requires parallel processing.
2121
- **Human interactions:** For two-factor authentication, workflows that require human approval.
2222
- **Asynchronous HTTP APIs:** For any scenario where a client doesn't want to wait for long-running tasks to complete.
@@ -56,7 +56,7 @@ As a feature of Azure Functions, [Durable Functions](../durable-functions-overvi
5656
- Local development experience
5757
- Serverless pricing model, and more.
5858

59-
Aside from running on the Functions platform, Durable Functions apps can also be run on Azure App Service and Azure Container Apps, just like a regular Function app.
59+
Aside from running on the Functions platform, Durable Functions apps can also be run on Azure App Service and Azure Container Apps.
6060

6161
Durable Functions includes a special feature called [Durable Entities](../durable-functions-entities.md), which are similar in concept to virtual actors or grains in the Orleans framework. *Entities* allow you to keep small pieces of states for objects in a distributed system. For example, you could use entities to model users of a microblogging app or the counter of an exercise app.
6262

@@ -112,7 +112,7 @@ The [Durable Task Scheduler](./durable-task-scheduler.md) (currently in preview)
112112

113113
#### When to use Durable Task SDKs
114114

115-
If your app only needs workflows, the Durable Task SDKs provide a lightweight and relatively un-opinionated programming model for authoring workflows.
115+
If your app only needs workflows, the Durable Task SDKs provide a lightweight and relatively unopinionated programming model for authoring workflows.
116116

117117
When you need to run apps on Azure Kubernetes Services or VMs on-premises with official Microsoft support. While Durable Functions can be run on these platforms as well, there's no official support.
118118

@@ -122,13 +122,13 @@ Walk through one of the following quickstarts to configure your applications to
122122

123123
| | Quickstart | Description |
124124
| - | ---------- | ----------- |
125-
| **Local development quickstart** | [Create an ap with Durable Task SDKs and Durable Task Scheduler](./quickstart-portable-durable-task-sdks.md) using either the .NET, Python, or Java SDKs. | Run a fan-in/fan-out orchestration locally using the Durable Task Scheduler emulator and review orchestration history using the dashboard. |
125+
| **Local development quickstart** | [Create an app with Durable Task SDKs and Durable Task Scheduler](./quickstart-portable-durable-task-sdks.md) using either the .NET, Python, or Java SDKs. | Run a fan-in/fan-out orchestration locally using the Durable Task Scheduler emulator and review orchestration history using the dashboard. |
126126
| **Deploy to Azure Container Apps using Azure Developer CLI** | [Configure Durable Task SDKs in your container app with Azure Functions Durable Task Scheduler][TODO] | Deploy a function chaining pattern solution using the Azure Developer CLI. |
127127

128128
## Limitations
129129

130130
- **The Durable Task Framework (DTFx) support**
131-
- DTFx is an open-source .NET orchestration framework similar to the .NET Durable Task SDK. While it *can* be used to build apps that run on platforms like Azure Kubernetes Services, **DTFx doesn't receive official Microsoft support**, so it's not recommended.
131+
- DTFx is an open-source .NET orchestration framework similar to the .NET Durable Task SDK. While it *can* be used to build apps that run on platforms like Azure Kubernetes Services, **DTFx doesn't receive official Microsoft support**.
132132

133133
## Next steps
134134

0 commit comments

Comments
 (0)