You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable-task-scheduler/quickstart-portable-durable-task-sdks.md
+69-5Lines changed: 69 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ Since the example code automatically uses the default emulator settings, you don
150
150
151
151
::: zone pivot="csharp,python,java"
152
152
153
-
## Run the projects
153
+
## Run the quickstart
154
154
155
155
::: zone-end
156
156
@@ -174,7 +174,7 @@ Since the example code automatically uses the default emulator settings, you don
174
174
175
175
### Understanding the output
176
176
177
-
When you run this sample, you receive output from both the worker and client processes.
177
+
When you run this sample, you receive output from both the worker and client processes. [Unpack what happened in the code when you ran the project.](#understanding-the-code-structure)
178
178
179
179
#### Worker output
180
180
@@ -274,7 +274,7 @@ Total items processed: 5
274
274
275
275
### Understanding the output
276
276
277
-
When you run this sample, you receive output from both the worker and client processes.
277
+
When you run this sample, you receive output from both the worker and client processes. [Unpack what happened in the code when you ran the project.](#understanding-the-code-structure)
278
278
279
279
#### Worker output
280
280
@@ -346,6 +346,8 @@ When you run this sample, you receive output that shows:
346
346
- Random delays for each work item (between 0.5 and 2 seconds) to simulate varying processing times.
347
347
- A final message showing the aggregation of results.
348
348
349
+
[Unpack what happened in the code when you ran the project.](#understanding-the-code-structure)
Now that you've run the sample locally, you can choose to deploy to Azure for a production scenario. You can deploy for any compute, including Azure container Apps, Azure Kubernetes Service, Azure App Service, and Virtual Machines.
691
+
692
+
[Make sure you're aware of related costs with creating scheduler and task hub resources.](./durable-task-scheduler-dedicated-sku.md)
693
+
694
+
1. In a new terminal, install or upgrade the Durable Task Scheduler CLI extension.
695
+
696
+
```azurecli
697
+
az extension add --name durabletask
698
+
```
699
+
700
+
```azurecli
701
+
az extension add --upgrade --name durabletask
702
+
```
703
+
704
+
1. Create a resource group
705
+
706
+
```azurecli
707
+
az group create --name <rg-name> --location <location>
0 commit comments