Understanding Durability & Write Safety in MongoDB®

4 min read
Understanding Durability & Write Safety in MongoDB®

SHARE THIS ARTICLE

Durability is the “D” in the MongoDB ACID properties (A – Atomicity, C – Consistency, I – Isolation), popularized by traditional relational database management systems (RDBMS). Durability is the guarantee that written data has been saved and will survive permanently. NoSQL databases like MongoDB give developers fine-grained control over the durability of their write calls. This enables developers to choose different durability, safety and performance models for different classes of data. However, this also places the burden on the developer to discern and understand the nuances of the different write safety options. In this post, we’ll look at the different options for write safety provided in the Java driver.

In MongoDB parlance, this is called “Write Concern”. Write concerns vary from “weak” to “strong”. Weak writes concerns can lead to higher throughput but provide less data safety and strong write concerns are vice versa.

The Java driver allows you to specify your write safety options using several telescoping constructors. Here is the constructor with all the options:

WriteConcern(int w, int wtimeout, boolean fsync, boolean j, boolean continueOnError)

As you can see, this constructor has a lot of options. In order to make it easier for developers, “Tags” are provided for common write concern values – Unacknowledged, Acknowledged, Journalled, Fsynced and Replica Acknowledged. Each tag maps to a certain invocation of the above constructor.

Unacknowledged MongoDB Mode

This is the “fire and forget” mode. The MongoDB driver does not attempt to acknowledge the receipt of write operations. For example, if your MongoDB service is down and you’re using this mode, all the errors are silently ignored and your data is lost. Obviously, you should only be using this mode for low-value data where write throughput is more important than loss of a certain amount of data. This mode can be specified as follows:

new WriteConcern(0) / WriteConcern.UNACKNOWLEDGED

Acknowledged MongoDB Mode

This is the default write mode for MongoDB. In this mode, the MongoDB driver attempts to acknowledge the receipt of write operations on the server, allowing the driver to catch any network errors, duplicate keys errors, etc. However, this does not guarantee that data is saved on the disk. If the MongoDB server crashes after acknowledging the write, but before committing it to disk, the data is lost. This mode can be specified as follows:

new WriteConcern(1) / WriteConcern.ACKNOWLEDGED

Journaled MongoDB Mode

In this mode, the MongoDB server acknowledges the write only after committing the data to the journal.  When using this mode, even if the server crashes on server restart, the data is reapplied from the journal. Obviously, journaling needs to be enabled for this to work. All production systems should have journaling enabled, and you can learn more about this in our post Should you enable MongoDB journaling?

In a replica set scenario, the journaling write concerns only apply to the primary. By default, the journal is committed to disk every 100ms. When you specify a write with the journaled option, the journal is committed to disk in 30ms. So, if you specify j:true for every write, your throughput will be a maximum of 1000/30 = 33.3 writes/sec. If you want better throughput, you’ll need to batch your updates and set j:true for the last update of the batch. This mode can be specified as follows:

WriteConcern( 1, 0, false, true ) / WriteConcern.JOURNALLED

Fsynced MongoDB Mode

In this mode, the MongoDB server acknowledges the write only after the write is written to disk. This mode can be specified as follows:

new WriteConcern(true) / WriteConcern.FSYNCED

Replica Acknowledged MongoDB Mode

The previous write safety modes apply only to a single server. When you run replica sets, you have the option of controlling how many replicas your write needs to be written before it is considered successful. For example, with a write concern of “w:2”, the write needs to be written to one primary and at least one secondary before it is considered successful. This reduces the throughput but gives you better safety. If you’re not aware of the number of replicas beforehand, you can use the WriteConcern.MAJORITY tag to ensure that the data is saved in the majority of the replicas. This is the safest option in MongoDB. If you’re going to use this option, also make sure to set the “wtimeout” value to indicate how long the command should wait before returning failure:

new WriteConcern(2)/ REPLICA_ACKNOWLEDGED
new Majority()/ WriteConcern.MAJORITY

The following tags have been deprecated (or plan to be) – ERRORS_IGNORED, NORMAL, SAFE, FSYNC_SAFE, JOURNAL_SAFE, REPLICAS_SAFE. Please use the newer options instead of these options. As always, if you have any comments or questions please reach out to us at support@scalegrid.io.

For more information, please visit www.scalegrid.io. Connect with ScaleGrid on LinkedIn, X, Facebook, and YouTube.
Table of Contents

Stay Ahead with ScaleGrid Insights

Dive into the world of database management with our monthly newsletter. Get expert tips, in-depth articles, and the latest news, directly to your inbox.

Related Posts

Redis vs Memcached in 2024

Choosing between Redis and Memcached hinges on specific application requirements. In this comparison of Redis vs Memcached, we strip away...

multi cloud plan - scalegrid

Plan Your Multi Cloud Strategy

Thinking about going multi-cloud? A well-planned multi cloud strategy can seriously upgrade your business’s tech game, making you more agile....

hybrid cloud strategy - scalegrid

Mastering Hybrid Cloud Strategy

Mastering Hybrid Cloud Strategy Are you looking to leverage the best private and public cloud worlds to propel your business...

NEWS

Add Headline Here