Skip to content

Commit 97dee29

Browse files
authored
tweaks
1 parent 314df99 commit 97dee29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/app-service/environment/using-an-ase.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Azure App Service Environment is a deployment of Azure App Service into a subnet
1818
- **Database**: The database holds information that defines the environment.
1919
- **Storage**: The storage is used to host the customer-published apps.
2020

21-
You can deploy an ASE (ASEv1 and ASEv2) with an external or internal VIP for app access. The deployment with an external VIP is commonly called an External ASE. The internal version is called the ILB ASE because it uses an internal load balancer (ILB). To learn more about the ILB ASE, see [Create and use an ILB ASE][MakeILBASE].
21+
You can deploy an ASE with an external or internal VIP for app access. The deployment with an external VIP is commonly called an External ASE. The internal version is called the ILB ASE because it uses an internal load balancer (ILB). To learn more about the ILB ASE, see [Create and use an ILB ASE][MakeILBASE].
2222

2323
## Create an app in an ASE ##
2424

25-
To create an app in an ASE, you use the same process as when you create it normally, but with a few small differences. When you create a new App Service plan:
25+
To create an app in an ASE, you use the same process as when you create it normally, but with a few small differences. When you create a new App Service plan (ASP):
2626

2727
- Instead of choosing a geographic location in which to deploy your app, you choose an ASE as your location.
2828
- All App Service plans created in an ASE can only be in an Isolated pricing tier.
@@ -75,11 +75,11 @@ To create an app in an ASE:
7575

7676
Every App Service app runs in an App Service plan. App Service Environments hold App Service plans, and App Service plans hold apps. When you scale an app, you scale the App Service plan and thus scale all the apps in the same plan.
7777

78-
When you scale an App Service plan, the needed infrastructure is automatically added. There is a time delay to scale operations while the infrastructure is added. In ASEv1, the needed infrastructure must be added before you can create or scale out your App Service plan.
78+
When you scale an App Service plan, the needed infrastructure is automatically added. There is a time delay to scale operations while the infrastructure is added. If you perform several scale operations in sequence, the first infrastructure scale request is acted on and the others queue up. When the first scale operation completes, the other infrastructure requests all operate together. When the infrastructure is added, the App Service plans are assigned as appropriate. Creating a new App Service plan is itself a scale operation as it requests additional hardware.
7979

8080
In the multitenant App Service, scaling is immediate because a pool of resources is readily available to support it. In an ASE, there is no such buffer, and resources are allocated upon need.
8181

82-
In an ASE, you can scale an App Service plan up to 100 instances. An ASE can have up to 200 total instances across all of the ASPs that are in the ASE.
82+
In an ASE, you can scale an App Service plan up to 100 instances. An ASE can have up to 201 total instances across all of the App Service plans that are in the ASE.
8383

8484
## IP addresses ##
8585

@@ -91,7 +91,7 @@ With an external ASE, you can configure IP-based SSL for your app in the same ma
9191

9292
When you scale out your App Service plans, workers are automatically added to support them. Every ASE is created with two front ends. The front ends automatically scale out at a rate of one front end for every total 15 instances in your App Service plans. For example, if you have three App Service plans of five instances each, you would have a total of 15 instances and three front ends. If you scale to a total of 30 instances, then you have four front ends, and so on.
9393

94-
The number of front ends that are allocated by default should be enough for most scenarios. However, you can scale out at a faster rate. You can change the ratio to as low as one front end for every five instances. You can also change the size of the front ends. By default they are single core. You can change that in the portal to two or four core instead. There is a charge for changing the ratio or the front end sizes. For more information, see [Azure App Service pricing][Pricing].
94+
The number of front ends that are allocated by default are good for a moderate load. You can change the ratio to as low as one front end for every five instances. You can also change the size of the front ends. By default they are single core. You can change that in the portal to two or four core instead. There is a charge for changing the ratio or the front end sizes. For more information, see [Azure App Service pricing][Pricing]. If you are looking to improve the load capacity of your ASE, you will get more improvement by first scaling to 2 core front ends before adjusting the scale ratio. Changing the core size of your front ends will cause an upgrade of your ASE and should be performed outside of regular business hours.
9595

9696
Front-end resources are the HTTP/HTTPS endpoint for the ASE. With the default front-end configuration, memory usage per front end is consistently around 60 percent. Customer workloads don't run on a front end. The key factor for a front end with respect to scale is the CPU, which is driven primarily by HTTPS traffic.
9797

0 commit comments

Comments
 (0)