Skip to content

Commit b0b0996

Browse files
committed
Adds Flex Consumption to reliability/AZ page
1 parent 68dc7e5 commit b0b0996

File tree

7 files changed

+272
-28
lines changed

7 files changed

+272
-28
lines changed

articles/azure-functions/flex-consumption-plan.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ Flex Consumption includes an _always ready_ feature that lets you choose instanc
7777

7878
For example, if you set always ready to 2 for your HTTP group of functions, the platform keeps two instances always running and assigned to your app for your HTTP functions in the app. Those instances are processing your function executions, but depending on concurrency settings, the platform scales beyond those two instances with on-demand instances.
7979

80+
No less than 2 always-ready instances will be allowed to be configured per function or function group while [zone redundancy is enabled](../reliability/reliability-functions.md#flex-consumption-availability-zone-support).
81+
8082
To learn how to configure always ready instances, see [Set always ready instance counts](flex-consumption-how-to.md#set-always-ready-instance-counts).
8183

8284
## Concurrency
184 KB
Loading
184 KB
Loading

articles/reliability/reliability-functions.md

Lines changed: 264 additions & 22 deletions
Large diffs are not rendered by default.

includes/functions-create-function-app-portal.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: include file, devdivchpfy22
1414

1515
1. In the **New** page, select **Function App**.
1616

17-
1. Under **Select a hosting option**, select **Consumption** > **Select** to create your app in the default **Consumption** plan. In this [serverless](https://azure.microsoft.com/overview/serverless-computing/) hosting option, you pay only for the time your functions run. [Premium plan](../articles/azure-functions/functions-premium-plan.md) also offers dynamic scaling. When you run in an App Service plan, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md).
17+
1. Under **Select a hosting option**, select **Flex Consumption** > **Select** to create your app in the default **Flex Consumption** plan. In this [serverless](https://azure.microsoft.com/overview/serverless-computing/) hosting option, you pay only for the time your functions run. To learn more about different hosting plans, see [Overview of plans](../articles/azure-functions/functions-scale.md#overview-of-plans).
1818

1919
1. On the **Basics** page, use the function app settings as specified in the following table:
2020

@@ -23,12 +23,12 @@ ms.custom: include file, devdivchpfy22
2323
| **Subscription** | Your subscription | The subscription under which you create your new function app. |
2424
| **[Resource Group](../articles/azure-resource-manager/management/overview.md)** | *myResourceGroup* | Name for the new resource group in which you create your function app. You should create a new resource group because there are [known limitations when creating new function apps in an existing resource group](../articles/azure-functions/functions-scale.md#limitations-for-creating-new-function-apps-in-an-existing-resource-group).|
2525
| **Function App name** | Globally unique name | Name that identifies your new function app. Valid characters are `a-z` (case insensitive), `0-9`, and `-`. |
26+
|**Region**| Preferred region | Select a [region](https://azure.microsoft.com/regions/) that's near you or near other services that your functions can access. |
2627
| **Runtime stack** | Preferred language | Choose a runtime that supports your favorite function programming language. In-portal editing is only available for JavaScript, PowerShell, Python, TypeScript, and C# script.<br/>To create a C# Script app that supports in-portal editing, you must choose a runtime **Version** that supports the **in-process model**.<br/>C# class library and Java functions must be [developed locally](../articles/azure-functions/functions-develop-local.md#local-development-environments). |
2728
|**Version**| Version number | Choose the version of your installed runtime. |
28-
|**Region**| Preferred region | Select a [region](https://azure.microsoft.com/regions/) that's near you or near other services that your functions can access. |
29-
|**Operating system**| Windows | An operating system is preselected for you based on your runtime stack selection, but you can change the setting if necessary. In-portal editing is only supported on Windows. |
29+
|**Instance Size**| 2048 MB | The instance memory size used for each instance of the app as it scales. |
3030

31-
1. Accept the default options in the remaining tabs, including the default behavior of creating a new storage account on the **Storage** tab and a new Application Insight instance on the **Monitoring** tab. You can also choose to use an existing storage account or Application Insights instance.
31+
1. Accept the default options in the remaining tabs, including the default behavior of creating a new storage account on the **Storage** tab and a new Application Insights instance on the **Monitoring** tab. You can also choose to use an existing storage account or Application Insights instance, and change Azure OpenAI, Networking, Deployment, and Authentication settings.
3232

3333
1. Select **Review + create** to review the app configuration you chose, and then select **Create** to provision and deploy the function app.
3434

includes/functions-flex-supported-regions-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ms.author: glenga
1515
1616
The [`az login`](/cli/azure/reference-index#az-login) command signs you into your Azure account.
1717
18-
2. Use the `az functionapp list-flexconsumption-locations` command to review the list of regions that currently support Flex Consumption.
18+
2. Use the `az functionapp list-flexconsumption-locations` command to review the list of regions that currently support Flex Consumption in alphabetical order.
1919
2020
```azurecli-interactive
21-
az functionapp list-flexconsumption-locations --output table
21+
az functionapp list-flexconsumption-locations --query "sort_by(@, &name)[].{Region:name}" -o table
2222
```

0 commit comments

Comments
 (0)