Skip to content

Commit 89bcd19

Browse files
Merge pull request #106718 from alexkarcher-msft/Premium-Regions
Premium regions
2 parents e28c489 + 356ac07 commit 89bcd19

File tree

1 file changed

+33
-35
lines changed

1 file changed

+33
-35
lines changed

articles/azure-functions/functions-premium-plan.md

Lines changed: 33 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ az functionapp plan create --resource-group <RESOURCE_GROUP> --name <PLAN_NAME>
2323
--location <REGION> --sku EP1
2424
```
2525

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.
2727

2828
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).
2929

@@ -95,44 +95,42 @@ Running on a machine with more memory does not always mean that your function ap
9595

9696
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>`.
9797

98-
## Regions
98+
## Region Max Scale Out
9999

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)
101103

102104
|Region| Windows | Linux |
103105
|--| -- | -- |
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.
135-
106+
|Australia Central| 20 | Not Available |
107+
|Australia Central 2| 20 | Not Available |
108+
|Australia East| 100 | 20 |
109+
|Australia Southeast | 100 | 20 |
110+
|Brazil South| 60 | 20 |
111+
|Canada Central| 100 | 20 |
112+
|Central US| 100 | 20 |
113+
|East Asia| 100 | 20 |
114+
|East US | 100 | 20 |
115+
|East US 2| 100 | 20 |
116+
|France Central| 100 | 20 |
117+
|Germany West Central| 100 | Not Available |
118+
|Japan East| 100 | 20 |
119+
|Japan West| 100 | 20 |
120+
|Korea Central| 100 | 20 |
121+
|North Central US| 100 | 20 |
122+
|North Europe| 100 | 20 |
123+
|Norway East| 20 | 20 |
124+
|South Central US| 100 | 20 |
125+
|South India | 100 | Not Available |
126+
|Southeast Asia| 100 | 20 |
127+
|UK South| 100 | 20 |
128+
|UK West| 100 | 20 |
129+
|West Europe| 100 | 20 |
130+
|West India| 100 | 20 |
131+
|West Central US| 20 | 20 |
132+
|West US| 100 | 20 |
133+
|West US 2| 100 | 20 |
136134

137135
## Next steps
138136

0 commit comments

Comments
 (0)