NoSQLmongo_detail.py中均衡器信息的处理思路

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NoSQLmongo_detail.py中均衡器信息的处理思路相关的知识,希望对你有一定的参考价值。

【ToolsForMongo】mongo_detail.py中均衡器信息的处理思路

先看下几种典型状况下的db.settings.find({‘_id‘:‘balancer‘})输出:

1.创建mongos之后,从未设置balancer时:

mongos> var x = db.settings.findOne({‘_id‘:‘balancer‘})
mongos> x == null
true
mongos> sh.getBalancerState()
true

2.创建了mongos之后,因故手动关闭了balancer

mongos> db.settings.findOne({‘_id‘:‘balancer‘})
{ "_id" : "balancer", "mode" : "off", "stopped" : true }
mongos> sh.getBalancerState()
false

3.设置了balancer的运行时间段,但当前时间不在其中

mongos>  var x = db.settings.findOne({‘_id‘:‘balancer‘})
mongos> x
{
    "_id" : "balancer",
    "stopped" : true,
    "activeWindow" : {
        "start" : "00:00",
        "stop" : "06:00"
    }
}
mongos> sh.getBalancerState()
false

4.设置了balancer的运行时间段,当前时间在其中

mongos> var x = db.settings.findOne({‘_id‘:‘balancer‘})
mongos> x
{
    "_id" : "balancer",
    "stopped" : false,
    "activeWindow" : {
        "start" : "00:00",
        "stop" : "22:00"
    }
}
mongos> sh.getBalancerState()
true

再看下官方mongo shell中的js代码

mongos> sh.getBalancerState
function (configDB) {
    if (configDB === undefined)
        configDB = sh._getConfigDB();
    var x = configDB.settings.findOne({_id: "balancer"});
    if (x == null)
        return true;
    return !x.stopped;
}

1.先处理了configDB不是默认的config库的情况

2.x == null代表了上面的从未设置balancer,默认开启的状况

3.对返回值中的.stopped项进行取反,得到是否正在运行

mongos> sh.isBalancerRunning
function (configDB) {
    if (configDB === undefined)
        configDB = sh._getConfigDB();
    var x = configDB.locks.findOne({_id: "balancer"});
    if (x == null) {
        print("config.locks collection empty or missing. be sure you are connected to a mongos");
        return false;
    }
    return x.state > 0;
}

以上是关于NoSQLmongo_detail.py中均衡器信息的处理思路的主要内容,如果未能解决你的问题,请参考以下文章

Nginx专题:Nginx的负载均衡策略及其配置

Nginx专题:Nginx的负载均衡策略及其配置

您的网站升级到“Https”了吗?天融信负载均衡来帮您!

nginx 负载均衡时,一台tomcat宕机时的问题 自动切换(转自java版web项目-微信公众号)

微信红包业务,为什么采用轮询算法?

小白学AI八种应对样本不均衡的策略