summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/sharding_runtime_d_params.idl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/sharding_runtime_d_params.idl')
-rw-r--r--src/mongo/db/s/sharding_runtime_d_params.idl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/s/sharding_runtime_d_params.idl b/src/mongo/db/s/sharding_runtime_d_params.idl
index cd5885bbe3f..70f9466365c 100644
--- a/src/mongo/db/s/sharding_runtime_d_params.idl
+++ b/src/mongo/db/s/sharding_runtime_d_params.idl
@@ -33,13 +33,14 @@ server_parameters:
description: >-
The maximum number of documents in each batch to delete during the cleanup stage of chunk
migration (or the cleanupOrphaned command). A value of 0 indicates that the system chooses
- the default value (128).
+ the default value (INT_MAX).
set_at: [startup, runtime]
cpp_vartype: AtomicWord<int>
cpp_varname: rangeDeleterBatchSize
validator:
gte: 0
- default: 128
+ default:
+ expr: std::numeric_limits<int>::max()
rangeDeleterBatchDelayMS:
description: >-