DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Related

  • What Developers Need to Know About Table Geo-Partitioning
  • Getting Started With Apache Cassandra
  • 7 Essential Tips for a Production ClickHouse Cluster
  • CAP Theorem for Distributed System

Trending

  • Infrastructure as Code (IaC) Beyond the Basics
  • The Future of Java and AI: Coding in 2025
  • Memory Leak Due to Time-Taking finalize() Method
  • Integrating Model Context Protocol (MCP) With Microsoft Copilot Studio AI Agents
  1. DZone
  2. Data Engineering
  3. Databases
  4. MongoDB: Consistency Levels and the CAP/PACLEC Theorem

MongoDB: Consistency Levels and the CAP/PACLEC Theorem

This article seeks to address this w.r.t MongoDB in-depth, thereby providing a broad overview of approaching CAP and PACLEC theorems.

By 
Sree Panchajanyam D user avatar
Sree Panchajanyam D
·
Nov. 25, 19 · Review
Likes (4)
Comment
Save
Tweet
Share
16.6K Views

Join the DZone community and get the full member experience.

Join For Free

Person holding cap in the air

Consistency Levels and the CAP/PACLEC Theorem

There is a lot of discussion in the NoSQL community about consistency levels offered by NoSQL DBs and its relation to CAP/PACELC theorem. This article seeks to address this w.r.t MongoDB in-depth, thereby providing a broad overview of approaching CAP and PACLEC theorems from a NoSQL perspective. For a quick summary of consistency levels, please refer to Consistency Matrix towards the end of the article.

You might also enjoy:  Understanding the CAP Theorem

MongoDB Notes for the Purpose of This Article

  1. MongoDB always replicates data asynchronously from primary to secondaries. This cannot be changed.

  2. Even when you increase writeconcern to w:2 or w:majority and enable journaling, replication is still asynchronous.

  3. Secondaries read data from the primary's oplog and apply operations asynchronously.

  4. Default writeconcern of MongoDB is w:1 (successful write to primary) and journaling is disabled j:false

  5. WRITEs can be performed only on PRIMARY

  6. By Default, READs are done on PRIMARY. This can be changed by sacrificing consistency.

  7. Enabling READs from SECONDARIES results in stale/dirty reads and and makes MongoDB EVENTUAL CONSISTENT even without a PARTITION.

  8. Availability during a partition of MongoDB cluster is always on BEST EFFORT basis. A part of the cluster is always lost in the event of a partition.

Loss of Consistency in MongoDB

  1. During Partition — By default, due to asynchronous replication, when there is a partition in which primary is lost or becomes isolated on the minority side, there is a chance of losing data that is unreplicated to secondaries, hence there is loss of consistency during partitions. More on how to address this below.

  2. Without Partition — If reads from secondaries are enabled, async replication forces MongoDB to be eventually consistent even when there is no partition.

Some Definitions

Image title

Tuneable Consistency (Consistency Continuum)

Consistency is not a discrete point in space, it is a continuum, ranging from Strong Consistency at one extreme to Weak Consistency on the other, with varying points of Eventual Consistency in between. Each software application, according to the use case, may choose to belong anywhere in between.

With availability during a partition being always on Best-Effort basis, Consistency Level during a PARTITION is traded off with latency during NON-PARTITION. Decisioning on write latency as per our application requirement drives us to a point in the Consistency Continuum and vice versa.

We can achieve varying levels of latency during NON-PARTITION and varying consistency guarantees during PARTITION by tuning w and j values as below:

  1. Example, w:0 no guarantees — very very low latency, very very low consistency - writes can be lost without PARTITION

  2. Example, w:1 and j:false guarantees writes onto primary(disk) — very low latency, very low consistency

  3. Example, w:2 and j:false guarantees writes onto primary(disk) + 1 secondary (memory) — low latency, low consistency

  4. Example, w:2 and j: true guarantees writes onto primary(disk) + 1 secondary (disk) — mid latency, mid consistency

  5. Example, w:majority and j: false guarantees writes onto primary(disk) + majority secondary (memory) — mid latency, mid consistency

  6. Example, w:majority and j: true guarantees writes onto primary(disk) + majority secondary (memory) — high latency, high consistency

  7. With {w:1, j:false} — writes are faster when there is no partition as writes do not wait on replication.

  8. And with {w:1, j:false} — in the event of PARTITION when primary node is lost, there is a high probability of successful writes being lost.

  9. The probability of losing successful writes decreases with an increase in writeconcern and by enabling journaling.

To READ or NOT-TO-READ From Secondaries

Barring the below cases:

{w:majority, j: true } — Strong Consistency in most cases

{w:0, j:false} — Weak Consistency in any primary failure, 

for all other combinations of w & j, the below is how reading/not reading from secondaries affect the consistency levels.

If reads from secondaries are enabled, stale data is read and MongoDB offers following consistency levels,

  1. Successful writes when there is NO PARTITION — Eventual Consistency

  2. Unsuccessful writes when there is NO PARTITION — Eventual Consistency

  3. Worst Case for successful writes when there is PARTITION — Weak Consistency

  4. Avg case for successful writes heavily depends on the configuration and the way cluster is partitioned leaning towards Eventual Consistency.

  5. Best Case for successful writes when there is PARTITION when acting primary is not lost — Eventual Consistency

  6. Worst Case for unsuccessful writes when there is PARTITION — Weak Consistency

  7. Avg case for unsuccessful writes heavily depends on the configuration and the way cluster is partitioned leaning towards Weak Consistency

  8. Best case for unsuccessful writes when there is PARTITION when acting primary is not lost — Eventual Consistency

If reads from secondaries are disabled, MongoDB offers the following consistency levels:

  1. Successful writes(no writeTimeout) when there is NO PARTITION — Strong Consistency

  2. Unsuccessful writes( errored with writeTimeout) when there is NO PARTITION — Strong Consistency

  3. Worst Case for successful writes(no writeTimeout) when there is PARTITION — Weak Consistency

  4. Avg case for successful writes heavily depends on the configuration and the way the cluster is partitioned leaning towards Strong Consistency.

  5. Best Case for successful writes(no writeTimeout) when there is PARTITION and the acting primary is not lost — Strong Consistency

  6. Worst Case for unsuccessful writes (errored writeTimeout) when there is PARTITION and the acting primary is lost — Weak Consistency

  7. Avg case for unsuccessful writes(errored writeTimeout) heavily depends on the configuration and the way cluster is partitioned leaning towards Weak Consistency

  8. Best case for unsuccessful writes(errored writeTimeout) when there is PARTITION and the acting primary is not lost — Strong Consistency

  9.  It becomes 0 when {w:majority, j:true}

Caveats and Considerations of Varying w and j Values

  1. If we want low latency during non-partition a.k.a normal times then writeconcern should be set to a lower value and journaling should be disabled.

  2. However, the trade-off here is when partition occurs on such a cluster, the probability of losing successful writes is very high.

  3. When there is no partition or when all nodes are up, MongoDB is consistent and achieves low latency

  4. When there is a partition, MongoDB's consistency depends on the writeconcern and journaling settings.

  5. The lower the latency expectation. the lower should be the value of writeconcern(w:1) with journaling disabled (j:false).

Concluding Remarks on Tuneable Consistency — CAP/PACELC Theorem

Barring the below cases

  • {w:majority, j: true } - Strong Consistency in most cases

  • {w:0, j:false} - Weak Consistency in any primary failure, 

For all other combinations of w & j, we cannot precisely define where a MongoDB cluster lies in the Consistency Continuum defined by CAP or PACELC theorems.

Availability [Applicable for the Entire Consistency Continuum]

  1. MongoDB provides Best Effort Availability because in case of partition, we will always lose a part of the cluster — at least a minority.

  2. If MAJORITY of the cluster is lost we can only READ from MongoDB. Write availability is totally impacted.

  3. if MINORITY of the cluster is lost we can READ and WRITE from MongoDB. Partial Availability.

Achieving Strong Consistency

With the below settings, MongoDB offers strong consistency in most cases for practical purposes.

  1. {w:majority} and {j:true}

  2. WRITE on primary node(only possible setting with MongoDB)

  3. READ from primary node only (for max consistency)

Consistency Levels Offered Under Various Scenarios

  1. Successful writes when there is NO PARTITION — Strong Consistency

  2. Unsuccessful writes when there is NO PARTITION — Strong Consistency

  3. Worst Case for successful writes when there is PARTITION — Strong Consistency

  4. Worst Case for successful writes Strong Consistency.

  5. Best Case for successful writes when there is PARTITION and acting primary is not lost — Strong Consistency

  6. Worst Case for unsuccessful writes when there is PARTITION and acting primary is lost — Weak Consistency

  7. Avg case for unsuccessful writes heavily depends on the configuration and the way cluster is partitioned — Leans towards Strong Consistency

  8. Best case for unsuccessful writes(errored writeTimeout) when there is PARTITION and acting primary is not lost — Strong Consistency

Caveats and Considerations of the Above Settings

  1. Setting {w:majority} and {j:true} forces the client to wait till the majority of the secondaries accept and persist the write.

  2. Setting {w:majority} and {j:true} introduces latency in writes.

  3. Event with this setting, unsuccessful writes might be lost during partition when the primary is lost.

  4. With this setting, successful writes are not lost during partition.

Concluding Remarks on Strong Consistency — CAP/PACELC Theorem

With {w:majority, j:true} and READ from primary only, MongoDB could be categorized as CP in CAP and CP/EC in PACELC theorem

Consistency Matrix

Image title

Further Reading

Consistency in Databases

Cloud-Native Applications and the CAP Theorem

MongoDB Database Partition (database) Theorem cluster

Opinions expressed by DZone contributors are their own.

Related

  • What Developers Need to Know About Table Geo-Partitioning
  • Getting Started With Apache Cassandra
  • 7 Essential Tips for a Production ClickHouse Cluster
  • CAP Theorem for Distributed System

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!