Recently I've started investigating Couchbase Server as a candidate for the project. A particular scenario I'm looking at right now is to how to make Couchbase acting as a "source of truth" which is why I'm digging into the durability aspect.
So here is a snippet from ACID Properties and Couchbase:
If the durability requirements fail, then Couchbase may still save the document and eventually distribute it across the cluster. All we know is that it didn’t succeed as far as the SDK knows. You can choose to act on this information to introduce more ACID properties into your application.
So imagine next. I insert/update a document and primary node fails until data made it to any replica. Let's say primary is gone for a long time. Now, I don't know at this point whether data was written to disk... So a scary part here is that "Couchbase may still save the document and eventually distribute it across the cluster". Meaning, as far as client can tell, the data didn't make it, so a user would see an error, but then all of a sudden it may appear in the system if primary goes back online.
Am I reading this statement correctly? If I am, what's the best practice to handle it with Couchbase?
So here is what I've found out talking to Couchbase guys:
Scenario #1
Scenario #2
So I've asked if "When the former primary gets back online with locally persisted but not replicated items and starts resyncing, would these items get wiped off or something?" -
The full conversation is here.