@@ -3090,6 +3090,66 @@ Sharding Parameters
30903090 ``AsyncRequestsSenderUseBaton`` and always enables the performance
30913091 enhancement controlled by the parameter.
30923092
3093+ .. parameter:: autoMergerIntervalSecs
3094+
3095+ .. versionadded:: 7.0
3096+
3097+ *Type*: integer
3098+
3099+ *Default*: 3600
3100+
3101+ |mongod-only|
3102+
3103+ When {+auto-merge-upper+} is enabled, specifies the amount of time
3104+ between {+auto-merge-action+} rounds, in seconds. The default value
3105+ is 3600 seconds, or one hour.
3106+
3107+ ``autoMergerIntervalSecs`` can only be set on config servers.
3108+
3109+ This example sets ``autoMergerIntervalSecs`` to 7200 milliseconds,
3110+ or two hours, at startup:
3111+
3112+ .. code-block:: bash
3113+
3114+ mongod --setParameter autoMergeInterval=7200
3115+
3116+ During run time, you can set or modify the parameter with the
3117+ :dbcommand:`setParameter` command:
3118+
3119+ .. code-block:: javascript
3120+
3121+ db.adminCommand( { setParameter: 1, autoMergeInterval: 7200 } )
3122+
3123+ .. parameter:: autoMergerThrottlingMS
3124+
3125+ .. versionadded:: 7.0
3126+
3127+ *Type*: integer
3128+
3129+ *Default*: 15000
3130+
3131+ |mongod-only|
3132+
3133+ When {+auto-merge-upper+} is enabled, specifies the minimum amount
3134+ time between merges initiated by the {+auto-merge-upper+} on the same
3135+ collection, in milliseconds.
3136+
3137+ ``autoMergerThrottlingMS`` can only be set on config servers.
3138+
3139+ This example sets ``autoMergerThrottlingMS`` to 60000 milliseconds,
3140+ or one minute, at startup:
3141+
3142+ .. code-block:: bash
3143+
3144+ mongod --setParameter autoMergerThrottlingMS=60000
3145+
3146+ During run time, you can set or modify the parameter with the
3147+ :dbcommand:`setParameter` command:
3148+
3149+ .. code-block:: javascript
3150+
3151+ db.adminCommand( { setParameter: 1, autoMergerThrottlingMS: 60000 } )
3152+
30933153.. parameter:: balancerMigrationsThrottlingMs
30943154
30953155 .. versionadded:: 7.0 (*Also available starting in 6.3.1, 6.0.6, 5.0.18*)
0 commit comments