CosmosClientBuilder.WithThrottlingRetryOptions(TimeSpan, Int32) Method

Definition

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

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

Parameters

maxRetryWaitTimeOnThrottledRequests
TimeSpan

The maximum retry timespan 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