Skip to content

Commit 63d93cb

Browse files
andf-mongodbjeff-allen-mongo
authored andcommitted
DOCS-14391 add replWriterMinThreadCount param
1 parent 9bbd39f commit 63d93cb

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

source/reference/parameters.txt

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1623,11 +1623,40 @@ Replication Parameters
16231623

16241624
|mongod-only|
16251625

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
16281628
:parameter:`replWriterThreadCount` at startup and cannot change this
16291629
setting with the :dbcommand:`setParameter` command.
16301630

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+
16311660
.. parameter:: rollbackTimeLimitSecs
16321661

16331662
*Type*: 64-bit integer

0 commit comments

Comments
 (0)