AzureTableStoreDefaultMaxRetries Field

The default number of times a table storage request (including a batch transaction submitted by StoreAllAsync(IEnumerableITableEntity, String, CancellationToken)) will be retried before the failure is caught and recorded in Exceptions

Definition

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.3.9728.0
C#
public const int DefaultMaxRetries = 6

Field Value

Int32
6

Remarks

The Azure SDK's own client-wide default is 3; set explicitly here, alongside DefaultRetryDelaySeconds and DefaultMaxRetryDelaySeconds, so the retry posture for table writes is visible in code rather than left to an SDK default that could change under us

See Also