MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Lesen von Daten von bestimmten Knoten im Mongo-Replikatsatz

Der beste Weg ist, Tags zu verwenden, wie im Mongodb-Handbuch angegeben.

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)

Im Client setzen Sie einfach die readpreference auf dieses Tag

    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);