Skip to content

Commit bec7003

Browse files
committed
updated considerations section
1 parent 66d6c09 commit bec7003

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,13 @@ docker run -d -p 8080:8080 -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2 mcr.microsoft
102102
103103
## Considerations
104104

105-
- **Scaling**: If your durable functions app is not reaching the maximum throughout of the durable task scheduler, consider scaling out your app to more instances as the bottleneck might lie in the number of workers available to run orchestrations. If scaling out also doesn't achieve the throughput you need, then consider *scaling up* your compute resources. In the future, you'll also be able to scale out the resources allocated to a durable task scheduler by purchasing more [capacity units](./dts-dedicated-sku.md#dedicated-sku-concepts).
106-
- **Supported hosting plans**: DTS currently only supports Durable Functions running on *Functions Premium* and *App Service* plans.
107-
- **Available regions**: Durable task scheduler is only available in certain Azure regions today. Run this command to get the latest supported regions: `az provider show --namespace Microsoft.DurableTask --query "resourceTypes[?resourceType=='schedulers'].locations | [0]" --out table`.
105+
- **Scaling**: If your durable functions app is not reaching the maximum throughout of the durable task scheduler, consider *scaling out* your app to more instances as the bottleneck might lie in the number of workers available to run orchestrations. If scaling out also doesn't achieve the throughput you need, then consider *scaling up* your compute resources. In the future, you'll also be able to scale out the resources allocated to a durable task scheduler by purchasing more [capacity units](./dts-dedicated-sku.md#dedicated-sku-concepts).
106+
- **Supported hosting plans**: DTS currently only supports Durable Functions running on *Functions Premium* and *App Service* plans. For apps running on the Functions Premium plan, [enable the *Runtime Scale Monitoring* setting](./develop-with-durable-task-scheduler.md#auto-scaling-in-functions-premium-plan) to get auto scaling of the app.
107+
- **Available regions**: Durable task scheduler is only available in certain Azure regions today. Run this command to get the latest supported regions:
108+
109+
`az provider show --namespace Microsoft.DurableTask --query "resourceTypes[?resourceType=='schedulers'].locations | [0]" --out table`.
110+
111+
Consider picking the same region for your durable functions app and the durable task scheduler as having these resources in different regions may impact performance and limit certain network-related functionality.
108112
- **Scheduler quota**: You can create up to **five schedulers per region** per subscription today.
109113

110114
## Next steps

0 commit comments

Comments
 (0)