2

我有一个由三个成员组成的副本集。我是否可能只想从两个辅助节点之一读取?我使用以下代码,其中 ip 是辅助节点之一,但我仍然看到流量已部署到其他节点。

Mongo mongo = new MongoClient("171.21.43.34");
4

1 回答 1

4

最好的方法是使用 mongodb 手册中所述的标签。

https://docs.mongodb.com/manual/tutorial/configure-replica-set-tag-sets/

conf = rs.conf()
conf.members[0].tags = { "offline": "false"}
conf.members[1].tags = { "offline": "false"}
conf.members[2].tags = { "offline": "true"}
rs.reconfig(conf)

在客户端,您只需将 readpreference 设置为该标签

    MongoClientOptions options = MongoClientOptions
                    .builder()
                    .connectionsPerHost(config.connectionLimit)
                    .readPreference(TaggableReadPreference.secondaryPreferred(new TagSet(new Tag("offline", "true"))))
                    .socketTimeout(config.socketTimeout)
                    .connectTimeout(config.connectionTimeout)
                    .build();
    mongo = new MongoClient(NewsDAOConfig.parseAddresses(config.mongoAddress), options);
于 2016-06-23T18:43:10.907 回答