Skip to content

Commit f447350

Browse files
committed
late changes
1 parent 059d713 commit f447350

File tree

4 files changed

+67
-67
lines changed

4 files changed

+67
-67
lines changed

articles/application-gateway/application-gateway-autoscaling-zone-redundant.md

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The new v2 SKU includes the following enhancements:
2020
- **Static VIP**: Application gateway v2 SKU supports the static VIP type exclusively. This ensures that the VIP associated with application gateway doesn't change for the lifecycle of the deployment, even after a restart.
2121
- **Header Rewrite**: Application Gateway allows you to add, remove, or update HTTP request and response headers with v2 SKU. For more information, see [Rewrite HTTP headers with Application Gateway](rewrite-http-headers.md)
2222
- **Key Vault Integration (preview)**: Application Gateway v2 supports integration with Key Vault (in public preview) for server certificates that are attached to HTTPS enabled listeners. For more information, see [SSL termination with Key Vault certificates](key-vault-certs.md).
23-
- **Azure Kubernetes Service Ingress Controller (preview)**: The Application Gateway v2 Ingress Controller allows the Azure Application Gateway to be used as the ingress for an Azure Kubernetes Service known as AKS Cluster. For more information, see the [documentation page](https://azure.github.io/application-gateway-kubernetes-ingress/).
23+
- **Azure Kubernetes Service Ingress Controller (preview)**: The Application Gateway v2 Ingress Controller allows the Azure Application Gateway to be used as the ingress for an Azure Kubernetes Service (AKS) known as AKS Cluster. For more information, see the [documentation page](https://azure.github.io/application-gateway-kubernetes-ingress/).
2424
- **Performance enhancements**: The v2 SKU offers up to 5X better SSL offload performance as compared to the Standard/WAF SKU.
2525
- **Faster deployment and update time** The v2 SKU provides faster deployment and update time as compared to Standard/WAF SKU. This also includes WAF configuration changes.
2626

@@ -35,7 +35,18 @@ The Standard_v2 and WAF_v2 SKU is available in the following regions: North Cent
3535
With the v2 SKU, the pricing model is driven by consumption and is no longer attached to instance counts or sizes. The v2 SKU pricing has two components:
3636

3737
- **Fixed price** - This is hourly (or partial hour) price to provision a Standard_v2 or WAF_v2 Gateway.
38-
- **Capacity Unit price** - This is consumption-based cost that is charged in addition to fixed cost. Capacity Unit charge is also computed hourly or partial hourly.
38+
- **Capacity Unit price** - This is consumption-based cost that is charged in addition to the fixed cost. Capacity unit charge is also computed hourly or partial hourly. There are three dimensions to capacity unit - compute unit, persistent connections, and throughput. Compute unit is a measure of processor capacity consumed. Factors affecting compute unit are TLS connections/sec, URL Rewrite computations, and WAF rule processing. Persistent connection is a measure of established TCP connections to the application gateway in a given billing interval. Throughput is average Megabits/sec processed by the system in a given billing interval.
39+
40+
Each capacity unit is comprised of at most: 1 compute unit, or 2500 persistent connections, or 2.22 Mbps throughput.
41+
42+
Compute unit guidance:
43+
44+
- **Standard_v2** - Each compute unit is capable of approximately 50 connections per second with RSA 2048-bit key TLS certificate.
45+
- **WAF_v2** - Each compute unit is capable of approximately 10 concurrent requests per second for 70-30% mix of traffic with 70% requests less than 2 KB GET/POST and remaining higher. WAF performance is not affected by response size currently.
46+
47+
> [!NOTE]
48+
> Each instance can currently support approximately 10 capacity units.
49+
> The number of requests a compute unit can handle depends on various criteria like TLS certificate key size, key exchange algorithm, header rewrites, and in case of WAF incoming request size. We recommend you perform application tests to determine request rate per compute unit. Both capacity unit and compute unit will be made available as a metric before billing starts.
3950
4051
**Pricing in US East**:
4152

@@ -44,38 +55,36 @@ With the v2 SKU, the pricing model is driven by consumption and is no longer att
4455
| Standard_v2 | 0.20 | 0.0080 |
4556
| WAF_v2 | 0.36 | 0.0144 |
4657

47-
Capacity Unit details:
58+
The [pricing page](https://azure.microsoft.com/en-us/pricing/details/application-gateway/) will be updated to reflect regional prices on May 14, 2019. Billing is scheduled to start on June 1, 2019.
4859

49-
- **Standard_v2** - Each capacity unit can support approximately 50 connections per second with RSA 2048-bit key TLS certificate or 2500 persistent connections or 2.22 Mbps of traffic. Maximum capacity usage metric is charged.
50-
- **WAF_v2** - Each capacity unit is capable of approximately 10 concurrent requests per second for 70-30% mix of traffic with 70% requests less than 2 KB GET/POST and remaining higher. WAF performance is not affected by response size currently.
60+
**Example 1**
5161

52-
**Example 1**:
62+
An application gateway Standard_v2 is provisioned without autoscaling in manual scaling mode with fixed capacity of five instances.
5363

54-
An application gateway standard_v2 is provisioned for a month and during this time it receives 25 new SSL connections/sec, average of 8.88 Mbps data transfer. Assuming connections are short lived, your price would be:
64+
Fixed price = 744(hours) * $0.20 = $148.8 <br>
65+
Capacity units = 744 (hours) 10 capacity unit per instance * five instances * $0.008 per capacity unit hour = $297.6
5566

56-
Fixed price = 744(hours) * $0.20 = **$148.8**
67+
Total price = $148.8 + $297.6 = $446.4
5768

58-
Capacity Unit price = 744(hours) * Max (50/25 capacity unit for connections/sec, 8.88/2.22 capacity unit for throughput) * $0.008
69+
**Example 2**
5970

60-
= 744 * 4 * 0.008 = **$23.81**
71+
An application gateway standard_v2 is provisioned for a month and during this time it receives 25 new SSL connections/sec, average of 8.88 Mbps data transfer. Assuming connections are short lived, your price would be:
6172

62-
Total price = $148.8 + 23.81 = **$172.61**
73+
Fixed price = 744(hours) * $0.20 = $148.8
6374

64-
**Example 2**:
75+
Capacity unit price = 744(hours) * Max (25/50 compute unit for connections/sec, 8.88/2.22 capacity unit for throughput) * $0.008 = 744 * 4 * 0.008 = $23.81
6576

66-
An application gateway WAF_v2 is provisioned for a month and during this time it receives 25 new SSL connections/sec, average of 8.88 Mbps data transfer and does 80 request per second. Assuming connections are short lived, your price would be:
77+
Total price = $148.8+23.81 = $172.61
6778

68-
Fixed price = 744(hours) * $0.36 = **$267.84**
79+
**Example 3**
6980

70-
Capacity Unit price = 744(hours) * Max (50/25 capacity unit for connections/sec, 8.88/2.22 capacity unit for throughput, 80/10 WAF RPS) * $0.0144
81+
An Application Gateway WAF_v2 is provisioned for a month and during this time it receives 25 new SSL connections/sec, average of 8.88 Mbps data transfer and does 80 request per second. Assuming connections are short lived, and that compute unit calculation for the application supports 10 RPS per compute unit, your price would be:
7182

72-
= 744 * 8 * 0.0144 = **$85.71**
83+
Fixed price = 744(hours) * $0.36 = $267.84
7384

74-
Total price = $267.84 + $85.71 = **$353.55**
85+
Capacity unit price = 744(hours) * Max (compute unit Max(25/50 for connections/sec, 80/10 WAF RPS), 8.88/2.22 capacity unit for throughput) * $0.0144 = 744 * 8 * 0.0144 = $85.71
7586

76-
> [!NOTE]
77-
> Each instance can support approximately 10 Capacity Units currently.
78-
> The number of requests a capacity unit can handle depends on various criteria like TLS certificate key size, key exchange algorithm, and in case of WAF incoming request size. We recommend applications to perform application tests to determine throughput per Capacity Unit.
87+
Total price = $267.84 + $85.71 = $353.55
7988

8089
The [pricing page](https://azure.microsoft.com/en-us/pricing/details/application-gateway/) will be updated to reflect regional prices on May 14, 2019. Billing is scheduled to start on June 1, 2019.
8190

0 commit comments

Comments
 (0)