Skip to content

Commit 931559b

Browse files
Merge pull request #312727 from hhunter-ms/flex-consumption-typo
[Durable] Fix some typos around hosting plans
2 parents d20f79e + fa49cb3 commit 931559b

5 files changed

Lines changed: 9 additions & 15 deletions

File tree

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

Lines changed: 6 additions & 6 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": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ You can use the following table to understand the significant tradeoffs between
121121
| Price-performance configurable? | Coming soon! | ❌ No | ✅ Yes (SQL vCPUs) | ✅ Yes (Event Hubs TUs and CUs) |
122122
| Disconnected environment support | ❌ Azure connectivity required | ❌ Azure connectivity required | ✅ Fully supported | ❌ Azure connectivity required |
123123
| Identity-based connections | ✅ Fully supported | ✅ Fully supported | ⚠️ Requires runtime-driven scaling | ❌ Not supported |
124-
| [Flex Consumption plan](../flex-consumption-plan.md) | ❌ Not supported | ✅ Fully supported ([see notes](./durable-functions-azure-storage-provider.md#flex-consumption-plan)) | ✅ Fully supported | ❌ Not supported |
124+
| [Flex Consumption plan](../flex-consumption-plan.md) | ✅ Fully supported | ✅ Fully supported ([see notes](./durable-functions-azure-storage-provider.md#flex-consumption-plan)) | ✅ Fully supported | ❌ Not supported |
125125

126126
::: zone-end
127127

articles/azure-functions/durable/durable-task-scheduler/develop-with-durable-task-scheduler.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,6 @@ The Durable Task Scheduler emulator is only available as a Docker image today.
132132

133133
#### [Consumption SKU](#tab/consumption)
134134

135-
> [!NOTE]
136-
> The Consumption SKU is currently in preview. [Learn more about the SKU and orchestration framework combinations recommended for production use.](./durable-task-scheduler-billing.md)
137-
138135
```azurecli
139136
az durabletask scheduler create --name "YOUR_SCHEDULER" --resource-group "YOUR_RESOURCE_GROUP" --location "LOCATION" --ip-allowlist "[0.0.0.0/0]" --sku-name "consumption"
140137
```

articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler-billing.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Durable Task Scheduler is a managed backend service that persists orchestrat
1919
The [Durable Task Scheduler](./durable-task-scheduler.md) is a purpose-built backend as a service that persists orchestration state for your Durable Task SDK applications. The Durable Task Scheduler offers two pricing models to accommodate different service requirements, usage patterns, and preferred billing models:
2020

2121
- [Dedicated](#dedicated-sku)
22-
- [Consumption (preview)](#consumption-sku)
22+
- [Consumption](#consumption-sku)
2323

2424
## What is an action?
2525

@@ -106,9 +106,6 @@ A software as a service (SaaS) platform supports 800 million orchestrations mont
106106

107107
## Consumption SKU
108108

109-
> [!NOTE]
110-
> The Consumption SKU is currently in preview. [Learn more about the SKU and orchestration framework recommended for production use.](../choose-orchestration-framework.md)
111-
112109
The Consumption SKU offers a pay-as-you-use model, ideal for variable workloads and development scenarios.
113110

114111
Currently, you're limited to 10 schedulers and five task hubs per region per subscription when using the Consumption SKU. For more quota, [contact support](https://github.com/Azure/azure-functions-durable-extension/issues).

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
299299

300300
#### Azure SQL Database
301301
>[!NOTE]
302-
> Authenticating to Azure SQL database using managed identity is _not_ supported when hosting a Durable Functions app in the Flex Consumption plan. If your app is hosted in the Flex Consumption plan, skip to the [set app settings](#set-required-app-settings) section.
302+
> Authenticating to Azure SQL database using managed identity is _not_ supported when hosting a Durable Functions app in the Flex Consumption plan. If your app is hosted in the Flex Consumption plan, skip to the [set app settings](#set-required-app-settings) section. If you'd like to use it, the Flex Consumption plan is supported by Durable Task Scheduler.
303303
304304
1. Start by setting your developer identity as the database's admin.
305305

0 commit comments

Comments
 (0)