Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions source/reference/parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Authentication Parameters
.. parameter:: authenticationMechanisms

.. versionchanged:: 4.0

Remove support for the deprecated ``MONGODB-CR`` authentication mechanism.

|both|
Expand Down Expand Up @@ -867,6 +868,7 @@ General Parameters
retaining connections above this limit.

.. note::

The parameter is separate from the connections in TaskExecutor
pools. See :parameter:`ShardingTaskExecutorPoolMaxSize`.

Expand Down Expand Up @@ -940,6 +942,7 @@ General Parameters
excess of the value of :parameter:`connPoolMaxConnsPerHost`.

.. note::

The parameter is separate from the connections in TaskExecutor
pools. See :parameter:`ShardingTaskExecutorPoolMaxSize`.

Expand Down Expand Up @@ -1854,6 +1857,7 @@ The following parameters support diagnostic data capture (FTDC):
.. versionadded:: 3.2

.. versionchanged:: 3.4

Increased default size to 200 megabytes.

.. versionchanged:: 3.4.14
Expand Down Expand Up @@ -3056,8 +3060,7 @@ Sharding Parameters
.. parameter:: ShardingTaskExecutorPoolReplicaSetMatching

.. versionadded:: 4.2
.. versionchanged:: 5.0 (*Also starting in 4.4.5 and
4.2.13*)
.. versionchanged:: 5.0 (*Also starting in 4.4.5 and 4.2.13*)

Type: string

Expand Down Expand Up @@ -3545,6 +3548,28 @@ Sharding Parameters

- MongoDB 3.4.11+

.. parameter:: findChunksOnConfigTimeoutMS

.. versionadded:: 5.0

|both|

Type: Non-negative integer

Default: 900000

The timeout in milliseconds for find operations on
:data:`~config.chunks`.

If there is a large number of chunks in the cluster and chunk loading
fails with the error ``ExceededTimeLimit``, increase the parameter
value:

.. code-block:: bash

mongod --setParameter findChunksOnConfigTimeoutMS=1000000


Storage Parameters
~~~~~~~~~~~~~~~~~~

Expand Down
7 changes: 7 additions & 0 deletions source/release-notes/5.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,13 @@ Starting in MongoDB 5.0, the :dbcommand:`setParameter` command has a new
:parameter:`maxValidateMemoryUsageMB` parameter, which sets the maximum
memory usage for the :dbcommand:`validate` command.

``findChunksOnConfigTimeoutMS`` Server Parameter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Starting in MongoDB 5.0, you can use the
:parameter:`findChunksOnConfigTimeoutMS` parameter to change the timout
for find operations on :data:`~config.chunks`.

Database Profiler ``filter`` Option
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down