+
+ Retry policy associated with throttled requests during CosmosDB queries.
+
+
+ Max retry attempts
+
+ Max number of retries to be performed for a request. Default value 9.
+
+
+
setRetryAttempts(parseInt(newValue) + 1 || retryAttempts)}
+ onDecrement={(newValue) => setRetryAttempts(parseInt(newValue) - 1 || retryAttempts)}
+ onValidate={(newValue) => setRetryAttempts(parseInt(newValue) || retryAttempts)}
+ styles={spinButtonStyles}
+ />
+
+ Fixed retry interval (ms)
+
+ Fixed retry interval in milliseconds to wait between each retry ignoring the retryAfter returned
+ as part of the response. Default value is 0 milliseconds.
+
+
+ setRetryInterval(parseInt(newValue) + 1000 || retryInterval)}
+ onDecrement={(newValue) => setRetryInterval(parseInt(newValue) - 1000 || retryInterval)}
+ onValidate={(newValue) => setRetryInterval(parseInt(newValue) || retryInterval)}
+ styles={spinButtonStyles}
+ />
+
+ Max wait time (s)
+
+ Max wait time in seconds to wait for a request while the retries are happening. Default value 30
+ seconds.
+
+
+
+ setMaxWaitTimeInSeconds(parseInt(newValue) + 1 || MaxWaitTimeInSeconds)
+ }
+ onDecrement={(newValue) =>
+ setMaxWaitTimeInSeconds(parseInt(newValue) - 1 || MaxWaitTimeInSeconds)
+ }
+ onValidate={(newValue) => setMaxWaitTimeInSeconds(parseInt(newValue) || MaxWaitTimeInSeconds)}
+ styles={spinButtonStyles}
+ />
-