你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CosmosContainer.ReplaceThroughputAsync 方法

定义

设置为容器预配的吞吐量,以测量 Azure Cosmos 服务中的每秒请求单位数。

public abstract System.Threading.Tasks.Task<Azure.Cosmos.ThroughputResponse> ReplaceThroughputAsync (int throughput, Azure.Cosmos.RequestOptions requestOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member ReplaceThroughputAsync : int * Azure.Cosmos.RequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Cosmos.ThroughputResponse>
Public MustOverride Function ReplaceThroughputAsync (throughput As Integer, Optional requestOptions As RequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ThroughputResponse)

参数

throughput
Int32

cosmos 容器吞吐量,以每秒请求单位数表示。

requestOptions
RequestOptions

(可选) 吞吐量请求的选项。RequestOptions

cancellationToken
CancellationToken

(表示请求取消的可选) CancellationToken

返回

吞吐量响应。

示例

以下示例演示如何获取吞吐量。

ThroughputResponse throughput = await this.cosmosContainer.ReplaceThroughputAsync(400);

注解

https://docs.microsoft.com/azure/cosmos-db/request-units 有关预配吞吐量的详细信息。

适用于