Arya Chuodhury
Arya Chuodhury

Reputation: 41

How can we read from journal on MongoDb?

In a write concern mechanism, Suppose our data to be written is now available at journal and not yet passed to hard drive. Meanwhile if a read/write operation comes to the same data then how the engine will handle them ?

Upvotes: 0

Views: 748

Answers (1)

helmy
helmy

Reputation: 9507

If the data has been written to the journal, it has also been written in memory and would be available for reads.

There is no mechanism for you to access/read the journal, but this is not necessary.

Upvotes: 1

Related Questions