码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB 查看存储引擎

时间:2019-08-07 11:58:13      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:nbsp   com   status   reads   tor   div   缓存   set   only   

需要登录到具体的主/从节点查询,mongos查询不到

db.serverStatus()

其中有这个
"storageEngine" : {  "name" : "wiredTiger",  "supportsCommittedReads" : true,  "readOnly" : false,  "persistent" : true },
 
查看WiredTiger内部缓存到底占用了多少内存的方式是,在mongo shell中之行以下命令
db.runCommand( { serverStatus: 1 } ).wiredTiger.cache["bytes currently in the cache"]
如果不想重启mongoDB,可以在线修改,如下
db.adminCommand({setParameter: 1, wiredTigerEngineRuntimeConfig: "cache_size=8G"})

MongoDB 查看存储引擎

标签:nbsp   com   status   reads   tor   div   缓存   set   only   

原文地址:https://www.cnblogs.com/xibuhaohao/p/11314395.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!