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/flex-consumption-plan.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,8 @@ Flex Consumption includes an _always ready_ feature that lets you choose instanc
77
77
78
78
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.
79
79
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
+
80
82
To learn how to configure always ready instances, see [Set always ready instance counts](flex-consumption-how-to.md#set-always-ready-instance-counts).
Copy file name to clipboardExpand all lines: includes/functions-create-function-app-portal.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ ms.custom: include file, devdivchpfy22
14
14
15
15
1. In the **New** page, select **Function App**.
16
16
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).
18
18
19
19
1. On the **Basics** page, use the function app settings as specified in the following table:
20
20
@@ -23,12 +23,12 @@ ms.custom: include file, devdivchpfy22
23
23
|**Subscription**| Your subscription | The subscription under which you create your new function app. |
24
24
|**[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).|
25
25
|**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. |
26
27
|**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). |
27
28
|**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. |
30
30
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.
32
32
33
33
1. Select **Review + create** to review the app configuration you chose, and then select **Create** to provision and deploy the function app.
Copy file name to clipboardExpand all lines: includes/functions-flex-supported-regions-cli.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ ms.author: glenga
15
15
16
16
The [`az login`](/cli/azure/reference-index#az-login) command signs you into your Azure account.
17
17
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.
19
19
20
20
```azurecli-interactive
21
-
az functionapp list-flexconsumption-locations --output table
21
+
az functionapp list-flexconsumption-locations --query "sort_by(@, &name)[].{Region:name}" -o table
0 commit comments