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/durable-functions-azure-storage-provider.md
+6-13Lines changed: 6 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ Durable Functions creates the queues, tables, and blobs it uses in a configured
201
201
- The `durableTask/storageProvider/connectionStringName` setting (Durable Functions 2.x)
202
202
- The `durableTask/azureStorageConnectionStringName` setting (in Durable Functions 1.x)
203
203
204
-
# [Durable Functions 2.x](#tab/durable-2x)
204
+
###[Durable Functions 2.x](#tab/durable-2x)
205
205
206
206
```json
207
207
{
@@ -215,7 +215,7 @@ Durable Functions creates the queues, tables, and blobs it uses in a configured
215
215
}
216
216
```
217
217
218
-
# [Durable Functions 1.x](#tab/durable-1x)
218
+
###[Durable Functions 1.x](#tab/durable-1x)
219
219
220
220
```json
221
221
{
@@ -243,7 +243,7 @@ While you can scale out activity functions infinitely by adding more virtual mac
243
243
244
244
You define the number of control queues in your `host.json` file. The following example `host.json` snippet sets the `durableTask/storageProvider/partitionCount` property (`durableTask/partitionCount` in Durable Functions 1.x) to `3`. You have as many control queues as you have partitions.
245
245
246
-
# [Durable Functions 2.x](#tab/durable-2x)
246
+
###[Durable Functions 2.x](#tab/durable-2x)
247
247
248
248
```json
249
249
{
@@ -257,7 +257,7 @@ You define the number of control queues in your `host.json` file. The following
257
257
}
258
258
```
259
259
260
-
# [Durable Functions 1.x](#tab/durable-1x)
260
+
###[Durable Functions 1.x](#tab/durable-1x)
261
261
262
262
```json
263
263
{
@@ -310,7 +310,7 @@ Orchestration instances and entities are distributed across all control queue in
310
310
311
311
You can enable extended sessions by setting `durableTask/extendedSessionsEnabled` to `true` in your `host.json` file. You can use the `durableTask/extendedSessionIdleTimeoutInSeconds` setting to control how long an idle session stays in memory:
312
312
313
-
# [Durable Functions 2.x](#tab/durable-2x)
313
+
###[Durable Functions 2.x](#tab/durable-2x)
314
314
```json
315
315
{
316
316
"extensions": {
@@ -322,7 +322,7 @@ You can enable extended sessions by setting `durableTask/extendedSessionsEnabled
322
322
}
323
323
```
324
324
325
-
# [Durable Functions 1.x](#tab/durable-1x)
325
+
###[Durable Functions 1.x](#tab/durable-1x)
326
326
```json
327
327
{
328
328
"extensions": {
@@ -379,20 +379,13 @@ If you aren't seeing the throughput numbers you expect and your CPU and memory u
379
379
> [!TIP]
380
380
> In some cases, you can increase the throughput of external events, activity fan-in, and entity operations by increasing the value of the `controlQueueBufferThreshold` setting in your `host.json`. Increasing this value beyond its default causes the Durable Task Framework storage provider to use more memory to prefetch these events more aggressively, reducing delays associated with dequeueing messages from the Azure Storage control queues. For more information, see the [host.json](durable-functions-bindings.md#host-json) reference documentation.
381
381
382
-
<<<<<<< HEAD
383
-
### Flex Consumption Plan (supported by Durable Task Scheduler)
384
-
The [Flex Consumption plan](../flex-consumption-plan.md), which is supported by Durable Task Scheduler, is an Azure Functions hosting plan that provides many of the benefits of the Consumption plan, including a serverless billing model, while also adding useful features, such as private networking, instance memory size selection, and full support for managed identity authentication.
385
-
386
-
You should follow these performance recommendations when hosting Durable Functions in the Flex Consumption plan (supported by Durable Task Scheduler):
387
-
=======
388
382
## Flex Consumption plan
389
383
390
384
The [Flex Consumption plan](../flex-consumption-plan.md) is an Azure Functions hosting plan that provides many of the benefits of the Consumption plan, including:
391
385
- A serverless billing model
392
386
- Private networking
393
387
- Instance memory size selection
394
388
- Full support for managed identity authentication
395
-
>>>>>>> cb03332abcaabf9b6291356e2e0f3d4afd1126a2
396
389
397
390
You should follow these performance recommendations when you host Durable Functions in the Flex Consumption plan:
0 commit comments