Skip to content

Commit 6363a78

Browse files
lindaqinkay-kim
authored andcommitted
DOCS-6174 Add vm.max_map_count recommendation to Production Checklist
1 parent 3ad01c1 commit 6363a78

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

source/administration/production-checklist-operations.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,15 @@ Linux
224224
- Use ``noatime`` for the :setting:`~storage.dbPath` mount point.
225225

226226
- Configure sufficient file handles (``fs.file-max``), kernel pid
227-
limit (``kernel.pid_max``), and maximum threads per process
228-
(``kernel.threads-max``) for your deployment. For large systems,
227+
limit (``kernel.pid_max``), maximum threads per process
228+
(``kernel.threads-max``), and maximum number of memory map areas per
229+
process (``vm.max_map_count``) for your deployment. For large systems,
229230
the following values provide a good starting point:
230231

231232
- ``fs.file-max`` value of 98000,
232-
- ``kernel.pid_max`` value of 64000, and
233-
- ``kernel.threads-max`` value of 64000
233+
- ``kernel.pid_max`` value of 64000,
234+
- ``kernel.threads-max`` value of 64000, and
235+
- ``vm.max_map_count`` value of 128000
234236

235237
- Ensure that your system has swap space configured. Refer to your
236238
operating system's documentation for details on appropriate sizing.

0 commit comments

Comments
 (0)