sql >> Database >  >> NoSQL >> MongoDB

gegevens lezen van specifieke knooppunten in mongo-replicaset

De beste manier is om tags te gebruiken zoals vermeld in de Mongodb-handleiding.

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)

In de client stel je gewoon de leesvoorkeur in op die 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);



  1. Spring data en mongoDB - overerving en @DBref

  2. Voordelen van MongoDB | Nadelen van MongoDB

  3. Hoe gedistribueerde/geclusterde cache in te schakelen bij gebruik van redis met spring-datacache

  4. MongoDB-tools van de community die ClusterControl aanvullen