File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -2996,6 +2996,34 @@ Sharding Parameters
2996
2996
``AsyncRequestsSenderUseBaton`` and always enables the performance
2997
2997
enhancement controlled by the parameter.
2998
2998
2999
+ .. parameter:: balancerMigrationsThrottlingMs
3000
+
3001
+ .. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
3002
+
3003
+ *Type*: integer
3004
+
3005
+ *Default*: 1000
3006
+
3007
+ |mongod-only|
3008
+
3009
+ Specifies the minimum amount of time between two consecutive
3010
+ balancing rounds. This allows you to throttle the balancing
3011
+ rate. This parameter only takes effect on config server nodes.
3012
+
3013
+ This example sets ``balancerMigrationsThrottlingMs`` to 2000
3014
+ milliseconds at startup:
3015
+
3016
+ .. code-block:: bash
3017
+
3018
+ mongod --setParameter balancerMigrationsThrottlingMs=2000
3019
+
3020
+ During runtime, you can also set the parameter with the
3021
+ :dbcommand:`setParameter` command:
3022
+
3023
+ .. code-block:: javascript
3024
+
3025
+ db.adminCommand( { setParameter: 1, balancerMigrationsThrottlingMs: 2000 } )
3026
+
2999
3027
.. parameter:: chunkDefragmentationThrottlingMS
3000
3028
3001
3029
.. versionadded:: 5.3
Original file line number Diff line number Diff line change @@ -32,3 +32,12 @@ Starting in MongoDB 7.0, if you have large :ref:`change stream
32
32
<changeStreams>` events that exceed 16 MB, you can use the new
33
33
:pipeline:`$changeStreamSplitLargeEvent` stage to split the events into
34
34
smaller fragments.
35
+
36
+ New Parameters
37
+ ~~~~~~~~~~~~~~
38
+
39
+ ``balancerMigrationsThrottlingMs`` Parameter
40
+ ````````````````````````````````````````````
41
+ MongoDB 7.0 adds the :parameter:`balancerMigrationsThrottlingMs`
42
+ parameter which allows you to throttle the balancing rate.
43
+
You can’t perform that action at this time.
0 commit comments