本文共 1194 字,大约阅读时间需要 3 分钟。
[TOC]
// 开启2000毫秒以上的慢查询记录db.setProfilingLevel(1,2000)// 查看最近5条慢查询show profile// 按照慢查询执行时间倒序查询db.system.profile.find().sort({'millis':-1}).pretty// 查看查询计划db.Sync_Log.find({"$and":[{"mbid" :{$eq 7542163}},{'t':{$gte:2333}}]}).explain()// 关闭慢查询记录db.setProfilingLevel(0)
db.currentOp().inprog.forEach(function(item){if (item.secs_running > 1000 ) db.killOp(item.opid);})
db.currentOp().inprog.forEach(function(item){if (item.ns == "dbA.tbA")db.killOp(item.opid)})
db.currentOp().inprog.forEach(function(item){if (item.op=="query"){print(item.opid,item.op);}})
db.currentOp( {$and :[ {ns:{$ne:'local.oplog.rs'}}, {ns:{$ne:'local.replset.minvalid'}}, {ns:{$ne:'admin.$cmd'}}, {ns:{$ne:''}}] })
cfg = rs.conf()cfg.members[0].host = "xxxhost: 20000"cfg.members[1].host = "yyyhost: 20001"cfg.members[2].host = "zzzhost: 20002"rs.reconfig(cfg)
MongoDB 分片集群创建数据库时,系统会挑一个可用空量最大的节点作为其默认节点。
db.runCommand({"movePrimary": "test", "to": "shard0000"})
用途:在需要下线某个节点时,预先迁移出数据
sh.moveChunk("dbA.collectionB", { collC: "53187" }, "shard0019")
转载于:https://blog.51cto.com/l0vesql/2151897