The difference between the request and the team in the mongostat

I wonder what is the difference between request and command fields in mongostat output? The documentation just says that a team is the number of teams. Yes...

insert  query update delete getmore command flushes mapped  vsize    res faults  locked db idx miss %     qr|qw   ar|aw  netIn netOut  conn        set repl       time
15    161     72     *0     194     113|0         0    45g  90.8g   290m      6  Site:2.2%          0       0|0     0|0    66k   157k   105 sitename  PRI   11:25:48
+4
source share
1 answer

from mongo manual ::

query The number of query operations per second.

update The number of update operations per second.

delete The number of delete operations per second.

getmore The number of additional operations (for example, the cursor) for every second.

commandThe number of commands per second. On subordinate and secondary systems, mongostat represents two values ​​separated by a pipe symbol (eg | |), in the form of local replicated commands.

source

0
source

Source: https://habr.com/ru/post/1654002/


All Articles