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 @@ -2672,6 +2672,34 @@ Sharding Parameters
2672
2672
``AsyncRequestsSenderUseBaton`` and always enables the performance
2673
2673
enhancement controlled by the parameter.
2674
2674
2675
+ .. parameter:: balancerMigrationsThrottlingMs
2676
+
2677
+ .. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
2678
+
2679
+ *Type*: integer
2680
+
2681
+ *Default*: 1000
2682
+
2683
+ |mongod-only|
2684
+
2685
+ Specifies the minimum amount of time between two consecutive
2686
+ balancing rounds. This allows you to throttle the balancing
2687
+ rate. This parameter only takes effect on config server nodes.
2688
+
2689
+ This example sets ``balancerMigrationsThrottlingMs`` to 2000
2690
+ milliseconds at startup:
2691
+
2692
+ .. code-block:: bash
2693
+
2694
+ mongod --setParameter balancerMigrationsThrottlingMs=2000
2695
+
2696
+ During runtime, you can also set the parameter with the
2697
+ :dbcommand:`setParameter` command:
2698
+
2699
+ .. code-block:: javascript
2700
+
2701
+ db.adminCommand( { setParameter: 1, balancerMigrationsThrottlingMs: 2000 } )
2702
+
2675
2703
.. parameter:: chunkMigrationConcurrency
2676
2704
2677
2705
*Available starting in MongoDB 5.0.15.*
You can’t perform that action at this time.
0 commit comments