我可以拥有超过1个'mongos'实例吗?

时间:2014-09-29 08:06:15

标签: java mongodb

我使用Java将数据插入mongodb集群。 我可以拥有超过1个mongos实例,以便在我的一个mongos关闭时有备份吗?

这是我连接到mongos的java代码。

MongoClient mongoClient = new MongoClient("10.4.0.121",6001);
DB db = mongoClient.getDB("qbClientDB");
DBCollection collection = db.getCollection("clientInfo");

如何在Java代码中指定我的第二个mongos实例? (如果可能的话)。

提前致谢。

2 个答案:

答案 0 :(得分:5)

MongoClient docs说你可以,类似于(虚拟地址);

MongoClient mongoClient = new MongoClient(Arrays.asList(
   new ServerAddress("10.4.0.121",6001),
   new ServerAddress("10.4.0.122",6001),
   new ServerAddress("10.4.0.123",6001)));
  

MongoClient将自动检测服务器是否是副本集成员列表或mongos服务器列表。

答案 1 :(得分:4)

   public MongoClient(List<ServerAddress> seeds,
               MongoClientOptions options)


//Creates a Mongo based on a list of replica set members or a list of mongos. It will find all members (the master will be used by default). If you pass in a single server in the list, the driver will still function as if it is a replica set. If you have a standalone server, use the Mongo(ServerAddress) constructor.

//If this is a list of mongos servers, it will pick the closest (lowest ping time) one to send all requests to, and automatically fail over to the next server if the closest is down. 

  MongoClient mongoClient = new MongoClient(Arrays.asList(
  new ServerAddress("10.4.0.121",6001),
  new ServerAddress("10.4.0.122",6001),
  new ServerAddress("10.4.0.123",6001)));
相关问题