Share via


CosmosClientBuilder.WithThrottlingRetryOptions(TimeSpan, Int32) Method

Definition

Sets the minimum time to wait between retry and the max number of times to retry on throttled requests.

public Azure.Cosmos.Fluent.CosmosClientBuilder WithThrottlingRetryOptions (TimeSpan maxRetryWaitTimeOnThrottledRequests, int maxRetryAttemptsOnThrottledRequests);
member this.WithThrottlingRetryOptions : TimeSpan * int -> Azure.Cosmos.Fluent.CosmosClientBuilder
Public Function WithThrottlingRetryOptions (maxRetryWaitTimeOnThrottledRequests As TimeSpan, maxRetryAttemptsOnThrottledRequests As Integer) As CosmosClientBuilder

Parameters

maxRetryWaitTimeOnThrottledRequests
TimeSpan

The maximum retry time in seconds for the Azure Cosmos DB service. Any interval that is smaller than a second will be ignored.

maxRetryAttemptsOnThrottledRequests
Int32

The number specifies the times retry requests for throttled requests.

Returns

The current CosmosClientBuilder.

Applies to

See also