Skip to content

Commit b828495

Browse files
committed
fix warnings
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 9e31395 commit b828495

1 file changed

Lines changed: 6 additions & 13 deletions

File tree

articles/azure-functions/durable/durable-functions-azure-storage-provider.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Durable Functions creates the queues, tables, and blobs it uses in a configured
201201
- The `durableTask/storageProvider/connectionStringName` setting (Durable Functions 2.x)
202202
- The `durableTask/azureStorageConnectionStringName` setting (in Durable Functions 1.x)
203203

204-
# [Durable Functions 2.x](#tab/durable-2x)
204+
### [Durable Functions 2.x](#tab/durable-2x)
205205

206206
```json
207207
{
@@ -215,7 +215,7 @@ Durable Functions creates the queues, tables, and blobs it uses in a configured
215215
}
216216
```
217217

218-
# [Durable Functions 1.x](#tab/durable-1x)
218+
### [Durable Functions 1.x](#tab/durable-1x)
219219

220220
```json
221221
{
@@ -243,7 +243,7 @@ While you can scale out activity functions infinitely by adding more virtual mac
243243
244244
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.
245245

246-
# [Durable Functions 2.x](#tab/durable-2x)
246+
### [Durable Functions 2.x](#tab/durable-2x)
247247

248248
```json
249249
{
@@ -257,7 +257,7 @@ You define the number of control queues in your `host.json` file. The following
257257
}
258258
```
259259

260-
# [Durable Functions 1.x](#tab/durable-1x)
260+
### [Durable Functions 1.x](#tab/durable-1x)
261261

262262
```json
263263
{
@@ -310,7 +310,7 @@ Orchestration instances and entities are distributed across all control queue in
310310

311311
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:
312312

313-
# [Durable Functions 2.x](#tab/durable-2x)
313+
### [Durable Functions 2.x](#tab/durable-2x)
314314
```json
315315
{
316316
"extensions": {
@@ -322,7 +322,7 @@ You can enable extended sessions by setting `durableTask/extendedSessionsEnabled
322322
}
323323
```
324324

325-
# [Durable Functions 1.x](#tab/durable-1x)
325+
### [Durable Functions 1.x](#tab/durable-1x)
326326
```json
327327
{
328328
"extensions": {
@@ -379,20 +379,13 @@ If you aren't seeing the throughput numbers you expect and your CPU and memory u
379379
> [!TIP]
380380
> 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.
381381
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-
=======
388382
## Flex Consumption plan
389383

390384
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:
391385
- A serverless billing model
392386
- Private networking
393387
- Instance memory size selection
394388
- Full support for managed identity authentication
395-
>>>>>>> cb03332abcaabf9b6291356e2e0f3d4afd1126a2
396389

397390
You should follow these performance recommendations when you host Durable Functions in the Flex Consumption plan:
398391

0 commit comments

Comments
 (0)