strange mongodb and mongoose error: not master and slaveOk=false error

后端 未结 5 1310
忘掉有多难
忘掉有多难 2020-12-30 19:34

I\'m getting a strange error in my node.js app

not master and slaveOk=false code 13435

I\'m doing a findOne query using mongoose 4.0.2 hitting a

5条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-30 20:13

    That means you're trying to read from a secondary node in a replica set, you can only read from the primary node by default.

    You can allow a secondary node to accept reads by running rs.slaveOk() in a mongo shell that is connected to that secondary node. Allowing reads from a secondary is not recommended, because you could be reading stale data if the node isn't yet synced with the primary node.

    UPDATE: As Janusz Slota's comment points out, rs.slaveOk() is no longer used. Use rs.secondaryOk() instead, however this is still not recommended. Here's the documentation for rs.secondaryOk().

提交回复
热议问题