File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -2914,6 +2914,34 @@ Sharding Parameters
2914
2914
``AsyncRequestsSenderUseBaton`` and always enables the performance
2915
2915
enhancement controlled by the parameter.
2916
2916
2917
+ .. parameter:: balancerMigrationsThrottlingMs
2918
+
2919
+ .. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
2920
+
2921
+ *Type*: integer
2922
+
2923
+ *Default*: 1000
2924
+
2925
+ |mongod-only|
2926
+
2927
+ Specifies the minimum amount of time between two consecutive
2928
+ balancing rounds. This allows you to throttle the balancing
2929
+ rate. This parameter only takes effect on config server nodes.
2930
+
2931
+ This example sets ``balancerMigrationsThrottlingMs`` to 2000
2932
+ milliseconds at startup:
2933
+
2934
+ .. code-block:: bash
2935
+
2936
+ mongod --setParameter balancerMigrationsThrottlingMs=2000
2937
+
2938
+ During runtime, you can also set the parameter with the
2939
+ :dbcommand:`setParameter` command:
2940
+
2941
+ .. code-block:: javascript
2942
+
2943
+ db.adminCommand( { setParameter: 1, balancerMigrationsThrottlingMs: 2000 } )
2944
+
2917
2945
.. parameter:: chunkDefragmentationThrottlingMS
2918
2946
2919
2947
.. versionadded:: 5.3
You can’t perform that action at this time.
0 commit comments