search

Home  >  Q&A  >  body text

golang - go连接mongo replica set时,如何让read均匀分布到各个secondary上去?

replicaset有两个secondary,Eventual mode,但在使用labix/mgo.v2连接mongo时,发现所有的read都只集中在一个secondary上了,仅有很少的量会访问另外一个secondary。

// Read preference modes are specific to mgo:
Eventual  Mode = 0 // Same as Nearest, but may change servers between reads.
Monotonic Mode = 1 // Same as SecondaryPreferred before first write. Same as Primary after first write.
Strong    Mode = 2 // Same as Primary.
过去多啦不再A梦过去多啦不再A梦2757 days ago893

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-05-02 09:26:30

    1. Check the connect URL settings;

    2. If the Load Balance read is different from the expectations of the parameters you set, you can consider setting the Tag to further configure which member to read from.

    For reference.

    Love MongoDB! Have Fun!

    reply
    0
  • Cancelreply