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/ai-services/openai/concepts/provisioned-throughput.md
+69-17Lines changed: 69 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Azure OpenAI Service provisioned throughput
3
3
description: Learn about provisioned throughput and Azure OpenAI.
4
4
ms.service: azure-ai-openai
5
5
ms.topic: conceptual
6
-
ms.date: 11/20/2023
6
+
ms.date: 1/16/2024
7
7
ms.custom:
8
8
manager: nitinme
9
9
author: mrbullwinkle #ChrisHMSFT
@@ -14,44 +14,96 @@ keywords:
14
14
15
15
# What is provisioned throughput?
16
16
17
-
The provisioned throughput capability allows you to specify the amount of throughput you require for your application. The service then provisions the necessary compute and ensures it is ready for you. Throughput is defined in terms of provisioned throughput units (PTU) which is a normalized way of representing an amount of throughput for your deployment. Each model-versions pair requires different amounts of PTU to deploy and provide different amounts of throughput per PTU.
17
+
The provisioned throughput capability allows you to specify the amount of throughput you require in a deployment. The service then allocates the necessary model processing capacity and ensures it's ready for you. Throughput is defined in terms of provisioned throughput units (PTU) which is a normalized way of representing the throughput for your deployment. Each model-version pair requires different amounts of PTU to deploy and provide different amounts of throughput per PTU.
18
18
19
19
## What does the provisioned deployment type provide?
20
20
21
-
-**Predictable performance:** stable max latency and throughput for uniform workloads.
21
+
-**Predictable performance:** stable max latency and throughput for uniform workloads.
22
22
-**Reserved processing capacity:** A deployment configures the amount of throughput. Once deployed, the throughput is available whether used or not.
23
-
-**Cost savings:** High throughput workloads may provide cost savings vs token-based consumption.
23
+
-**Cost savings:** High throughput workloads might provide cost savings vs token-based consumption.
24
24
25
-
An Azure OpenAI Deployment is a unit of management for a specific OpenAI Model. A deployment provides customer access to a model for inference and integrates additional features like Content Moderation ([See content moderation documentation](content-filter.md)).
25
+
An Azure OpenAI Deployment is a unit of management for a specific OpenAI Model. A deployment provides customer access to a model for inference and integrates more features like Content Moderation ([See content moderation documentation](content-filter.md)).
26
26
27
27
> [!NOTE]
28
-
> Provisioned throughput units (PTU) are different from standard quota in Azure OpenAI and are not available by default. To learn more about this offering contact your Microsoft Account Team.
28
+
> Provisioned throughput unit (PTU) quota is different from standard quota in Azure OpenAI and is not available by default. To learn more about this offering contact your Microsoft Account Team.
29
29
30
30
## What do you get?
31
31
32
-
|Topic | Provisioned|
32
+
|Topic | Provisioned|
33
33
|---|---|
34
-
| What is it? | Provides guaranteed throughput at smaller increments than the existing provisioned offer. Deployments will have a consistent max latency for a given model-version |
34
+
| What is it? | Provides guaranteed throughput at smaller increments than the existing provisioned offer. Deployments have a consistent max latency for a given model-version.|
35
35
| Who is it for? | Customers who want guaranteed throughput with minimal latency variance. |
| Estimating size | Provided calculator in the studio & load test script |
36
+
| Quota | Provisioned-managed throughput Units for a given model. |
37
+
| Latency | Max latency constrained from the model. Overall latency is a factor of call shape. |
38
+
| Utilization | Provisioned-managed Utilization measure provided in Azure Monitor.|
39
+
| Estimating size | Provided calculator in the studio & benchmarking script.|
40
40
41
41
## Key concepts
42
42
43
43
### Provisioned throughput units
44
44
45
-
Provisioned throughput Units (PTU) are units of model processing capacity that customers you can reserve and deploy for processing prompts and generating completions. The minimum PTU deployment, increments, and processing capacity associated with each unit varies by model type & version.
45
+
Provisioned throughput units (PTU) are units of model processing capacity that customers you can reserve and deploy for processing prompts and generating completions. The minimum PTU deployment, increments, and processing capacity associated with each unit varies by model type & version.
46
46
47
47
### Deployment types
48
48
49
-
We introduced a new deployment type called **ProvisionedManaged** which provides smaller increments of PTU per deployment. Both types have their own quota, and you will only see the options you have been enabled for.
49
+
When deploying a model in Azure OpenAI, you need to set the `sku-name` to be Provisioned-Managed. The `sku-capacity` specifies the number of PTUs assigned to the deployment.
50
+
51
+
```azurecli
52
+
az cognitiveservices account deployment create \
53
+
--name <myResourceName> \
54
+
--resource-group <myResourceGroupName> \
55
+
--deployment-name MyDeployment \
56
+
--model-name GPT-4 \
57
+
--model-version 0613 \
58
+
--model-format OpenAI \
59
+
--sku-capacity 100 \
60
+
--sku-name ProvisionedManaged
61
+
```
50
62
51
63
### Quota
52
64
53
-
Provisioned throughput quota represents a specific amount of total throughput you can deploy. Quota in the Azure OpenAI Service is managed at the subscription level meaning that it can be consumed by different resources within that subscription.
65
+
Provisioned throughput quota represents a specific amount of total throughput you can deploy. Quota in the Azure OpenAI Service is managed at the subscription level. All Azure OpenAI resources within the subscription share this quota.
66
+
67
+
Quota is specific to a (deployment type, model, region) triplet and isn't interchangeable. Meaning you can't use quota for GPT-4 to deploy GPT-35-turbo. You can raise a support request to move quota across deployment types, models, or regions but the swap isn't guaranteed.
68
+
69
+
While we make every attempt to ensure that quota is deployable, quota doesn't represent a guarantee that the underlying capacity is available. The service assigns capacity during the deployment operation and if capacity is unavailable the deployment fails with an out of capacity error.
70
+
71
+
72
+
### How utilization enforcement works
73
+
Provisioned deployments provide you with an allocated amount of model processing capacity to run a given model. The `Provisioned-Managed Utilization` metric in Azure Monitor measures a given deployments utilization on 1-minute increments. Provisioned-Managed deployments are optimized to ensure that accepted calls are processed with a consistent model processing time (actual end-to-end latency is dependent on a call's characteristics). When the workload exceeds the allocated PTU capacity, the service returns a 429 HTTP status code until the utilization drops down below 100%.
74
+
75
+
76
+
#### What should I do when I receive a 429 response?
77
+
The 429 response isn't an error, but instead part of the design for telling users that a given deployment is fully utilized at a point in time. By providing a fast-fail response, you have control over how to handle these situations in a way that best fits your application requirements.
78
+
79
+
The `retry-after-ms` and `retry-after` headers in the response tell you the time to wait before the next call will be accepted. How you choose to handle this response depends on your application requirements. Here are some considerations:
80
+
- You can consider redirecting the traffic to other models, deployments or experiences. This option is the lowest-latency solution because the action can be taken as soon as you receive the 429 signal.
81
+
- If you're okay with longer per-call latencies, implement client-side retry logic. This option gives you the highest amount of throughput per PTU. The Azure OpenAI client libraries include built-in capabilities for handling retries.
82
+
83
+
#### How does the service decide when to send a 429?
84
+
We use a variation of the leaky bucket algorithm to maintain utilization below 100% while allowing some burstiness in the traffic. The high-level logic is as follows:
85
+
1. Each customer has a set amount of capacity they can utilize on a deployment
86
+
2. When a request is made:
87
+
88
+
a. When the current utilization is above 100%, the service returns a 429 code with the `retry-after-ms` header set to the time until utilization is below 100%
89
+
90
+
b. Otherwise, the service estimates the incremental change to utilization required to serve the request by combining prompt tokens and the specified max_tokens in the call.
91
+
92
+
3. When a request finishes, we now know the actual compute cost for the call. To ensure an accurate accounting, we correct the utilization using the following logic:
93
+
94
+
a. If the actual > estimated, then the difference is added to the deployment's utilization
95
+
b. If the actual < estimated, then the difference is subtracted.
96
+
97
+
4. The overall utilization is decremented down at a continuous rate based on the number of PTUs deployed.
98
+
99
+
Since calls are accepted until utilization reaches 100%, you're allowed to burst over 100% utilization when first increasing traffic. For sizeable calls and small sized deployments, you might then be over 100% utilization for up to several minutes.
100
+
101
+
102
+
:::image type="content" source="../media/provisioned/utilization.jpg" alt-text="Diagram showing how subsequent calls are added to the utilization." lightbox="../media/provisioned/utilization.jpg":::
103
+
104
+
54
105
55
-
Quota is specific to a (deployment type, model, region) triplet and isn't interchangeable. Meaning you can't use quota for GPT-4 to deploy GPT-35-turbo. Customers can raise a support request to move the quota across deployment types, models, or regions but we can't guarantee that it will be possible.
106
+
## Next steps
56
107
57
-
While we make every attempt to ensure that quota is always deployable, quota does not represent a guarantee that the underlying capacity is available for the customer to use. The service assigns capacity to the customer at deployment time and if capacity is unavailable the deployment will fail with an out of capacity error.
108
+
-[Learn about the onboarding steps for provisioned deployments](../how-to/provisioned-throughput-onboarding.md)
109
+
-[Provisioned Throughput Units (PTU) getting started guide](../how-to//provisioned-get-started.md)
0 commit comments