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/functions-premium-plan.md
+33-35Lines changed: 33 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ az functionapp plan create --resource-group <RESOURCE_GROUP> --name <PLAN_NAME>
23
23
--location <REGION> --sku EP1
24
24
```
25
25
26
-
In this example, replace `<RESOURCE_GROUP>` with your resource group and `<PLAN_NAME>` with a name for your plan that is unique in the resource group. Specify a [supported `<REGION>`](#regions). To create a Premium plan that supports Linux, include the `--is-linux` option.
26
+
In this example, replace `<RESOURCE_GROUP>` with your resource group and `<PLAN_NAME>` with a name for your plan that is unique in the resource group. Specify a [supported `<REGION>`](https://azure.microsoft.com/global-infrastructure/services/?products=functions). To create a Premium plan that supports Linux, include the `--is-linux` option.
27
27
28
28
With the plan created, you can use [az functionapp create](/cli/azure/functionapp#az-functionapp-create) to create your function app. In the portal, both the plan and the app are created at the same time. For an example of a complete Azure CLI script, see [Create a function app in a Premium plan](scripts/functions-cli-create-premium-plan.md).
29
29
@@ -95,44 +95,42 @@ Running on a machine with more memory does not always mean that your function ap
95
95
96
96
For example, a JavaScript function app is constrained by the default memory limit in Node.js. To increase this fixed memory limit, add the app setting `languageWorkers:node:arguments` with a value of `--max-old-space-size=<max memory in MB>`.
97
97
98
-
## Regions
98
+
## Region Max Scale Out
99
99
100
-
Below are the currently supported regions for each OS.
100
+
Below are the currently supported maximum scale out values for a single plan in each region and OS configuration. To request an increase please open a support ticket.
101
+
102
+
See the complete regional availability of Functions here: [Azure.com](https://azure.microsoft.com/global-infrastructure/services/?products=functions)
101
103
102
104
|Region| Windows | Linux |
103
105
|--| -- | -- |
104
-
|Australia Central| ✔<sup>1</sup> ||
105
-
|Australia Central 2| ✔<sup>1</sup> ||
106
-
|Australia East| ✔ | ✔<sup>1</sup> |
107
-
|Australia Southeast | ✔ | ✔<sup>1</sup> |
108
-
|Brazil South| ✔<sup>2</sup> | ✔<sup>1</sup> |
109
-
|Canada Central| ✔ | ✔<sup>1</sup> |
110
-
|Central US| ✔ | ✔<sup>1</sup> |
111
-
|East Asia| ✔ | ✔<sup>1</sup> |
112
-
|East US | ✔ | ✔<sup>1</sup> |
113
-
|East US 2| ✔ | ✔<sup>1</sup> |
114
-
|France Central| ✔ | ✔<sup>1</sup> |
115
-
|Germany West Central| ✔ ||
116
-
|Japan East| ✔ | ✔<sup>1</sup> |
117
-
|Japan West| ✔ | ✔<sup>1</sup> |
118
-
|Korea Central| ✔ | ✔<sup>1</sup> |
119
-
|North Central US| ✔ | ✔<sup>1</sup> |
120
-
|North Europe| ✔ | ✔<sup>1</sup> |
121
-
|Norway East| ✔<sup>1</sup> | ✔<sup>1</sup> |
122
-
|South Central US| ✔ | ✔<sup>1</sup> |
123
-
|South India | ✔ ||
124
-
|Southeast Asia| ✔ | ✔<sup>1</sup> |
125
-
|UK South| ✔ | ✔<sup>1</sup> |
126
-
|UK West| ✔ | ✔<sup>1</sup> |
127
-
|West Europe| ✔ | ✔<sup>1</sup> |
128
-
|West India| ✔ | ✔<sup>1</sup> |
129
-
|West Central US| ✔<sup>1</sup> | ✔<sup>1</sup> |
130
-
|West US| ✔ | ✔<sup>1</sup> |
131
-
|West US 2| ✔ | ✔<sup>1</sup> |
132
-
133
-
<sup>1</sup>Maximum scale out limited to 20 instances.
134
-
<sup>2</sup>Maximum scale out limited to 60 instances.
0 commit comments