Use the readConcern option to control the consistency and isolation of data read from replica sets and sharded clusters.
Through effective use of write concerns and read concerns, you can adjust the level of consistency and availability guarantees. For example, you can wait for stronger consistency guarantees or loosen consistency requirements for higher availability.
Replica sets and sharded clusters support a global default read concern. Operations without an explicit read concern inherit the global default. See setDefaultRWConcern for more information.
Read Concern Levels
The following read concern levels are available:
level | Description |
|---|---|
The query returns data from the instance with no guarantee that the data has been written to a majority of the replica set members. Data may be rolled back. Default for reads against the primary and secondaries. Availability: Read concern For more information, see the | |
The query returns data from the instance with no guarantee that the data has been written to a majority of the replica set members. Data may be rolled back. Availability: Read concern For sharded clusters, For more information, see the | |
The query returns the data acknowledged by a majority of the replica set members. Returned documents are durable, even if a failure occurs. To fulfill read concern Availability: Read concern Requirements: Replica sets must use the WiredTiger storage engine. For multi-document transactions, read concern For more information, see the | |
The query returns data that reflects all successful majority-acknowledged writes that completed before the start of the read operation. The query may wait for concurrent writes to propagate to a majority of replica set members before returning results. If a majority of your replica set members crash and restart after the read operation, returned documents are durable if With Availability:
You cannot use the Requirements: Linearizable read concern guarantees only apply if read operations specify a query filter that uniquely identifies a single document. Additionally if none of the following criteria are met, linearizable read concern might not read from a consistent snapshot, resulting in a document matching the filter not being returned:
If any of the preceding criteria are met, the query reads from a consistent snapshot to return the single matching document. Always use For more information, see the | |
A query with read concern If a transaction is not part of a causally consistent
session, upon transaction commit with write
concern If a transaction is part of a causally consistent
session, upon transaction commit with write
concern Availability: Read concern
|
Regardless of the read concern level, the most recent data on a node may not reflect the most recent version of the data in the system.
For more information on each read concern level, see:
readConcern Support
Read Concern Option
For operations not in multi-document transactions, you can specify a readConcern level as an option to commands and methods that support read concern:
readConcern: { level: <level> }
To specify the read concern level for mongosh method db.collection.find(), use the cursor.readConcern() method:
db.collection.find().readConcern(<level>)
Transactions and Available Read Concerns
For multi-document transactions, set the read concern at the transaction level, not at the individual operation level. Transaction operations use the transaction-level read concern. Read concerns set at the collection and database level are ignored inside the transaction. If you explicitly set the transaction-level read concern, the client-level read concern is also ignored.
Important
Do not explicitly set the read concern for individual operations. To set the read concern for transactions, see Read Concern, Write Concern, and Read Preference.
You can set the read concern at the transaction start:
Multi-document transactions support the following read concern levels:
Write commands that are part of a multi-document transactions can support the transaction-level read concern.
You can create collections and indexes inside a transaction. If explicitly creating a collection or an index, the transaction must use read concern
"local". If you implicitly create a collection, you can use any of the read concerns available for transactions.
If unspecified at the transaction start, transactions use the session-level read concern or, if that is unset, the client-level read concern.
For more information, see Transaction Read Concern.
Causally Consistent Sessions and Available Read Concerns
For operations in a causally consistent session, the "local", "majority", and "snapshot" levels are available. To guarantee causal consistency, use "majority". For details, see Causal Consistency.
Operations That Support Read Concern
The following operations support read concern:
Important
To set read concern for operations in a transaction, you set the read concern at the transaction level, not at the individual operation level. Do not explicitly set the read concern for the individual operations in a transaction. For more information, see Transactions and Read Concern.
| [3] | You cannot use the |
| [2] | Read concern "snapshot" is available only for certain read operations and for multi-document transactions. In a transaction, you cannot use the distinct command or its helpers on a sharded collection. |
The following write operations can also accept a read concern if part of a multi-document transaction:
Important
To set read concern for operations in a transaction, you set the read concern at the transaction level, not at the individual operation level.
Command | |||||
|---|---|---|---|---|---|
✓ | ✓ | ||||
✓ | ✓ | ||||
✓ | ✓ | ||||
✓ | ✓ | ||||
| ✓ | ||||
| ✓ |
| [1] | (1, 2) Read concern "snapshot" is available only for certain read operations and multi-document transactions. For transactions, set the read concern at the transaction level. Transaction operations that support "snapshot" correspond to the CRUD operations available in transactions. For more information, see Transactions and Read Concern. |
Read Concern not Supported on local Database
The local database does not support read concerns. MongoDB silently ignores any configured read concern for operations on collections in the local database.
Considerations
Read Your Own Writes
You can use causally consistent sessions to read your own writes, if the writes request acknowledgment.
Real Time Order
Combined with "majority" write concern, "linearizable" read concern enables multiple threads to perform reads and writes on a single document as if a single thread performed these operations in real time. The corresponding schedule for these reads and writes is considered linearizable.
Performance Comparisons
Unlike "majority", "linearizable" read concern confirms with secondary members that the read operation reads from a primary capable of confirming writes with { w: "majority" } write concern. [4] Reads with linearizable read concern may be significantly slower than reads with "majority" or "local" read concerns.
Always use maxTimeMS with linearizable read concern if a majority of data-bearing members are unavailable. maxTimeMS ensures that the operation returns an error if the read concern cannot be fulfilled, rather than blocking indefinitely.
For example:
db.restaurants.find( { _id: 5 } ).readConcern("linearizable").maxTimeMS(10000) db.runCommand( { find: "restaurants", filter: { _id: 5 }, readConcern: { level: "linearizable" }, maxTimeMS: 10000 } )
| [4] | In some circumstances, two nodes in a replica set may transiently believe that they are the primary, but at most, one of them will be able to complete writes with |
Read Operations and afterClusterTime
MongoDB supports causally consistent sessions. For read operations in causally consistent sessions, drivers automatically set the afterClusterTime read concern option.
Important
Do not manually set afterClusterTime for a read operation. MongoDB drivers set this value automatically for operations in causally consistent sessions. However, you can advance the operation time and the cluster time for the session, such as to be consistent with the operations of another client session. For an example, see Examples.
Note
You cannot specify atClusterTime together with afterClusterTime. To use atClusterTime with read concern "snapshot", disable causally consistent sessions.
To satisfy a read request with an afterClusterTime value of T, a mongod must perform the request after its oplog reaches time T. If its oplog has not reached time T, the mongod waits to service the request.
Read operations with a specified afterClusterTime return data that meets both the read concern level requirement and the specified afterClusterTime requirement.
For read operations not associated with causally consistent sessions, afterClusterTime is unset.
Read Concern Provenance
MongoDB tracks read concern provenance, which indicates the source of a read concern. The provenance value appears in the getLastError metrics, read concern error objects, and MongoDB logs.
The following table shows the possible read concern provenance values and their significance:
Provenance | Description |
|---|---|
| The read concern was specified in the application. |
| The read concern originated from a custom defined default value. See |
| The read concern originated from the server in absence of all other read concern specifications. |