@@ -1623,11 +1623,40 @@ Replication Parameters
1623
1623
1624
1624
|mongod-only|
1625
1625
1626
- Number of threads to use to apply replicated operations in parallel.
1627
- Values can range from 1 to 256 inclusive. You can only set
1626
+ Maximum number of threads to use to apply replicated operations in
1627
+ parallel. Values can range from 1 to 256 inclusive. You can only set
1628
1628
:parameter:`replWriterThreadCount` at startup and cannot change this
1629
1629
setting with the :dbcommand:`setParameter` command.
1630
1630
1631
+ .. seealso::
1632
+
1633
+ :parameter:`replWriterMinThreadCount`
1634
+
1635
+ .. parameter:: replWriterMinThreadCount
1636
+
1637
+ .. versionadded:: 4.0.26
1638
+
1639
+ *Type*: integer
1640
+
1641
+ *Default*: 0
1642
+
1643
+ |mongod-only|
1644
+
1645
+ Minimum number of threads to use to apply replicated operations in
1646
+ parallel. Values can range from 0 to 256 inclusive. You can only set
1647
+ :parameter:`replWriterMinThreadCount` at startup and cannot change
1648
+ this setting with the :dbcommand:`setParameter` command.
1649
+
1650
+ Parallel application of replication operations uses up to
1651
+ :parameter:`replWriterThreadCount` threads. If
1652
+ :parameter:`replWriterMinThreadCount` is configured with a value
1653
+ less than :parameter:`replWriterThreadCount`, the thread pool will
1654
+ timeout idle threads until the total count of threads in the thread
1655
+ pool is equal to :parameter:`replWriterMinThreadCount`.
1656
+
1657
+ :parameter:`replWriterMinThreadCount` must be configured with a value
1658
+ that is less than or equal to :parameter:`replWriterThreadCount`.
1659
+
1631
1660
.. parameter:: rollbackTimeLimitSecs
1632
1661
1633
1662
*Type*: 64-bit integer
0 commit comments