Tag: read your own writes

MongoDB Majority Read Concern

One common misconception of mongos read concern: majority is that it’s reading from a majority of nodes. This is understandable because it’s counterpart write concern: majority requires acks from the majority of nodes. But that’s not at all what read concern does. Reads always get submitted to a single node using a server selection process […]