File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
docs/reference/snapshot-restore
modules/repository-s3/src/main/java/org/elasticsearch/repositories/s3 Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ include::repository-shared-settings.asciidoc[]
335
335
336
336
`throttled_delete_retry.maximum_delay`::
337
337
338
- (integer) This is the upper bound on how long the delays between retries will grow to. Default is 500ms , minimum is 0ms.
338
+ (integer) This is the upper bound on how long the delays between retries will grow to. Default is 5s , minimum is 0ms.
339
339
340
340
`throttled_delete_retry.maximum_number_of_retries`::
341
341
Original file line number Diff line number Diff line change @@ -209,13 +209,13 @@ class S3Repository extends MeteredBlobStoreRepository {
209
209
*/
210
210
static final Setting <TimeValue > RETRY_THROTTLED_DELETE_DELAY_INCREMENT = Setting .timeSetting (
211
211
"throttled_delete_retry.delay_increment" ,
212
- new TimeValue (50 , TimeUnit . MILLISECONDS ),
212
+ TimeValue . timeValueMillis (50 ),
213
213
TimeValue .ZERO
214
214
);
215
215
static final Setting <TimeValue > RETRY_THROTTLED_DELETE_MAXIMUM_DELAY = Setting .timeSetting (
216
216
"throttled_delete_retry.maximum_delay" ,
217
- new TimeValue ( 500 , TimeUnit . MILLISECONDS ),
218
- TimeValue .ZERO
217
+ TimeValue . timeValueSeconds ( 5 ),
218
+ TimeValue .ZERO
219
219
);
220
220
static final Setting <Integer > RETRY_THROTTLED_DELETE_MAX_NUMBER_OF_RETRIES = Setting .intSetting (
221
221
"throttled_delete_retry.maximum_number_of_retries" ,
You can’t perform that action at this time.
0 commit comments