@@ -24,9 +24,9 @@ deployment and its use to determine ideal ``ulimit`` settings.
24
24
Generally, all :program:`mongod` and :program:`mongos` instances, like
25
25
other processes:
26
26
27
- - tracks each incoming connection with a file descriptor *and* a thread.
27
+ - track each incoming connection with a file descriptor *and* a thread.
28
28
29
- - tracks each internal thread or *pthread* as a system process.
29
+ - track each internal thread or *pthread* as a system process.
30
30
31
31
``mongod``
32
32
~~~~~~~~~~
@@ -41,16 +41,16 @@ other processes:
41
41
all other members of the set.
42
42
43
43
:program:`mongod` uses background threads for a number of internal
44
- processes, including :ref:`TTL collections <ttl-collections>` and
45
- replication, replica set health checks, which may require a small
44
+ processes, including :ref:`TTL collections <ttl-collections>`,
45
+ replication, and replica set health checks, which may require a small
46
46
number of additional resources.
47
47
48
48
``mongos``
49
49
~~~~~~~~~~
50
50
51
51
In addition to the threads and file descriptors for client
52
52
connections, :program:`mongos` must maintain connects to all config
53
- servers, and all shards, which includes all members of all replica
53
+ servers and all shards, which includes all members of all replica
54
54
sets.
55
55
56
56
For :program:`mongos`, consider the following behaviors:
@@ -101,8 +101,8 @@ system limits, as in the following example:
101
101
102
102
``ulimit`` refers to the per-*user* limitations for various
103
103
resources. Therefore, if your :program:`mongod` instance executes as a
104
- user that is also running multiple process , or multiple
105
- :program:`mongod` process , you might see contention for these
104
+ user that is also running multiple processes , or multiple
105
+ :program:`mongod` processes , you might see contention for these
106
106
resources. Also, be aware that the ``processes`` value (i.e. ``-u``)
107
107
refers to the combined number of distinct processes and sub-process
108
108
threads.
0 commit comments