”mongo群友在群里问了个问题,问的是--quiet启动参数如何用的? 如何理解安静的输出?“
看到这个问题,之前看过--quiet这个参数,没有认真研究过,也没在生产中使用过。
在mongodb启动时候,有个启动参数--quiet,在生产中没有用过,./mongo --help 看到对于它的解释也非常简单, --quiet be less chatty,于是查询了下官网,对其解释参数,如下:
--quiet
Runs the mongooplog in a quiet mode that attempts to limit the amount of output.
This option suppresses:
- connection accepted events
- connection closed events
运行mongooplog在安静模式,试图限制输出量。
这个选项取消:
接受连接的事件
连接关闭事件
即可以这么理解:如果添加这个--quiet这个参数在启动项,在日志log中,这2个事件是不进入其日志文件中;如果没有开启--quiet选项,则在log日志中则会有连接和关闭事件的信息。
而log分日志log oplog数据同步log 和journey修复日志,不能理解为这个操作的日志是oplog中。