Mongodb

如何在 mongo shell 中更改 MongoDB slowOpThresholdMs

  • February 7, 2018

我需要將slowms垃圾保持減少到50,如果不重新啟動mongod程序就找不到這樣做的方法。

slowOpThresholdMs設置定義了構成“慢”操作的內容。要設置分析器認為操作“慢”(因此包含在 中level 1 profiling data)的門檻值,您可以slowOpThresholdMs在執行時將其配置為db.setProfilingLevel()操作的參數。

對於 Ref setProfilingLevelslowOpThresholdMs

筆記: The threshold for slow operations applies to the entire mongod instance. When you change the threshold, you change it for all databases on the instance.

例如:

{ profile: 1, slowms: 200 }

數據庫分析會影響數據庫性能。僅在仔細考慮後啟用此選項

引用自:https://dba.stackexchange.com/questions/129520