com.mongodb.DBPortPool$SemaphoresOut: Out of semaphores to get db
     
     

    MongoDB 并发测试,报出上述错误。究其原因,是数据库连接数太少,资源耗尽。查看com.mongodb.MongoOptions源代码,其中有 connectionsPerHost和threadsAllowedToBlockForConnectionMultiplier两个重要的属性。

       connectionsPerHost:每个主机的连接数

       threadsAllowedToBlockForConnectionMultiplier:线程队列数,它以上面connectionsPerHost值相乘的结果就是线程队列最大值。如果连接线程排满了队列就会抛出“Out of semaphores to get db”错误。

       connectionsPerHost默认是10,threadsAllowedToBlockForConnectionMultiplier默认是5,也就是线程池有50个连接数可供使用。因此只要将这个属性的值加大就可以避免上述错误。

     

       其它属性设置:

       maxWaitTime:最大等待连接的线程阻塞时间

       connectTimeout:连接超时的毫秒。0是默认和无限

       socketTimeout:socket超时。0是默认和无限

       autoConnectRetry:这个控制是否在一个连接时,系统会自动重试

     

    java设置方法:

    MongoOptions options = new MongoOptions();
            options.connectionsPerHost = 100;//链接池数量 默认10 。避免Out of semaphores to get db connection error
            options.autoConnectRetry = true;
            options.threadsAllowedToBlockForConnectionMultiplier=5;
            options.slaveOk = true;
            mongo = new Mongo(replicaSetSeeds, options);