Linearizable reads are supposed to happen only on a writable primary with a read source of kNoTimestamp. Because of a race, these reads may enter AutoGetCollectionForRead on a secondary or primary in catch-up mode. Before SERVER-55443, this would result in an fassert as they attempted to read at kNoTimestamp on the non-writable node. After SERVER-55443, there is no invariant, but they may read at kNoTimestamp on a node which is in the middle of applying oplog. Most of the time this will fail when the node attempts to do the no-op write when the read is finished, but if the node completes step-up before that happens, it may succeed. Because linearizable reads are supposed to be for single documents only, this should usually be OK (no inconsistency will be observable) but it is bad practice anyway.
Instead of either reading at kNoTimestamp on a secondary, or hitting an fassert, a linearizable read should uassert with NotWritablePrimary when it would otherwise open a snapshot on a non-writable node.
- has to be done after
-
SERVER-67305 Lock-free reads setup should validate writes permitted before and after setting up snapshot.
- Closed
- is duplicated by
-
SERVER-67403 Linearizable reads can occasionally read with wrong read source
- Closed