内置工具监控
mongostat --host localhost:27017。mongotop --host localhost:27017。operationProfiling.slowOpThresholdMs(如设为100ms),记录慢查询。第三方工具监控
硬件与配置优化
storage.wiredTiger.engineConfig.cacheSizeGB。net.compression.compressors。索引优化
db.collection.createIndex({ field: 1 })。db.collection.explain("executionStats") 分析查询计划,避免全表扫描。查询与数据模型优化
{ field: 1 })减少返回字段,避免 SELECT *。架构优化
系统级优化
vm.swappiness)减少交换分区使用。db.runCommand({ compact: "collectionName" })。参考来源:[1,2,3,4,5,6,7,8,9,10,11]