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
docker run -itP mcr.microsoft.com/dts/dts-emulator:v0.0.5
60
+
docker run -itP mcr.microsoft.com/dts/dts-emulator:v0.0.6
61
61
```
62
62
63
63
This command exposes a single task hub named `default`. If you need more than one task hub, you can set the environment variable `DTS_TASK_HUB_NAMES` on the container to a comma-delimited list of task hub names like in the following command:
64
64
65
65
```bash
66
-
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:v0.0.5
66
+
docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.com/dts/dts-emulator:v0.0.6
67
67
```
68
68
69
69
## Create a scheduler and task hub
@@ -109,10 +109,10 @@ Learn more about Durable Task Scheduler [features](./durable-task-scheduler.md#f
109
109
"resourceGroup": "YOUR_RESOURCE_GROUP",
110
110
"systemData": {
111
111
"createdAt": "2025-01-06T21:22:59Z",
112
-
"createdBy": "YOUR_EMAIL@microsoft.com",
112
+
"createdBy": "YOUR_EMAIL@example.com",
113
113
"createdByType": "User",
114
114
"lastModifiedAt": "2025-01-06T21:22:59Z",
115
-
"lastModifiedBy": "YOUR_EMAIL@microsoft.com",
115
+
"lastModifiedBy": "YOUR_EMAIL@example.com",
116
116
"lastModifiedByType": "User"
117
117
},
118
118
"tags": {}
@@ -266,80 +266,13 @@ Durable Task Scheduler **only** supports either *user-assigned* or *system-assig
266
266
267
267
If you haven't already, [configure managed identity for your Durable Functions app](./durable-task-scheduler-identity.md).
268
268
269
-
## Accessing the Durable Task Scheduler dashboard
269
+
## Access the Durable Task Scheduler dashboard
270
270
271
-
Assign the required role to your *developer identity (email)* to gain access to the [Durable Task Scheduler dashboard](./durable-task-scheduler-dashboard.md).
272
-
273
-
::: zone pivot="az-cli"
274
-
275
-
1. Set the assignee to your developer identity.
276
-
277
-
```azurecli
278
-
assignee=$(az ad user show --id "[email protected]" --query "id" --output tsv)
279
-
```
280
-
281
-
1. Set the scope. Granting access on the scheduler scope gives access to *all* task hubs in that scheduler.
1. After granting access, go to `https://dashboard.durabletask.io/` and fill out the required information about your scheduler and task hub to see the dashboard.
[Assign the required role to your *developer identity (email)*](./durable-task-scheduler-dashboard.md#access-the-durable-task-scheduler-dashboard) to gain access to the Durable Task Scheduler dashboard.
339
272
340
273
## Auto scaling in Functions Premium plan
341
274
342
-
For Durable Task Scheduler apps on the Functions Premium plan, enable the *Runtime Scale Monitoring* setting to get auto scaling of the app.
275
+
For Durable Functions apps on the Functions Premium plan, you can enableautoscaling using the *Runtime Scale Monitoring* setting.
343
276
344
277
::: zone pivot="az-portal"
345
278
@@ -353,8 +286,6 @@ For Durable Task Scheduler apps on the Functions Premium plan, enable the *Runti
0 commit comments