Skip to content

Commit d29feaf

Browse files
committed
updates to auto-scaling doc from nick
Signed-off-by: Hannah Hunter <[email protected]>
1 parent d7650d8 commit d29feaf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler-auto-scaling-aca.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 05/01/2025
88

99
# Autoscaling in Azure Container Apps pattern for the Durable Task SDKs
1010

11-
You can implement Kubernetes Event-Driven Autoscaling (KEDA) in container apps that use the Durable Task SDKs. Autoscaling maintains the reliability and scalability of long-running workflows by adapting to changing demands without manual intervention.
11+
You can implement autoscaling in container apps that use the Durable Task Scheduler. Autoscaling maintains the reliability and scalability of long-running workflows by adapting to changing demands without manual intervention.
1212

1313
Control autoscaling by setting the range of application replicas deployed in response to an orchestration, activity, or entity being triggered. The scaler dynamically adjusts the number of container app replicas within that range, allowing your solution to handle spikes in the workload and prevent resource exhaustion.
1414

@@ -118,7 +118,7 @@ The [Autoscaling in Azure Container Apps sample]() demonstrates how to implement
118118
1. Navigate into the `AutoscalingInACA` sample directory.
119119

120120
```azdeveloper
121-
cd /path/to/Durable-Task-Scheduler/samples/portable-sdks/dotnet/AutoscalingInACA
121+
cd /path/to/Durable-Task-Scheduler/samples/scenarios/AutoscalingInACA
122122
```
123123

124124
1. Provision resources and deploy the application:
@@ -213,7 +213,7 @@ In the Azure portal, verify the orchestrations are running successfully.
213213

214214
### Understanding the custom scaler
215215

216-
This sample includes an `azure.yaml` configuration file. When you ran `azd up`, you deployed the entire sample solution to Azure, including a custom KEDA scaler for your container apps that automatically scales based on the Durable Task Scheduler's workload.
216+
This sample includes an `azure.yaml` configuration file. When you ran `azd up`, you deployed the entire sample solution to Azure, including a custom scaler for your container apps that automatically scales based on the Durable Task Scheduler's workload.
217217

218218
The custom scaler:
219219

articles/azure-functions/durable/durable-task-scheduler/quickstart-aca-azd-durable-task-sdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,23 @@ In a new terminal window, from the `Azure-Samples/Durable-Task-Scheduler` direct
7777
::: zone pivot="csharp"
7878

7979
```bash
80-
cd /samples/portable-sdks/dotnet/FunctionChaining
80+
cd /samples/durable-task-sdks/dotnet/FunctionChaining
8181
```
8282

8383
::: zone-end
8484

8585
::: zone pivot="python"
8686

8787
```bash
88-
cd /samples/portable-sdks/python/function-chaining
88+
cd /samples/durable-task-sdks/python/function-chaining
8989
```
9090

9191
::: zone-end
9292

9393
::: zone pivot="java"
9494

9595
```bash
96-
cd /samples/portable-sdks/java/function-chaining
96+
cd /samples/durable-task-sdks/java/function-chaining
9797
```
9898

9999
::: zone-end

0 commit comments

Comments
 (0)