Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确保我始终连接到辅助节点的连接字符串?甚至可以使用连接字符串强制连接到辅助节点吗?
使用 MongoDB 写入将始终进入主节点,您无能为力。Config 和 mongos 将相互通信,并将重定向到主节点。读取首选项的默认值为primary,它将所有读取操作发送到副本集的主节点。
读取首选项值如下:
primary primaryPreferred secondary secondaryPreferred 最近有关每个值的说明,请参阅读取首选项模式。
您是否有特定原因要连接到辅助节点?