▲ | carlsverre 2 days ago | ||||||||||||||||||||||||||||||||||||||||||||||||||||
You're right - it's a bit confusing! I took a crack at explaining it in the blog post under the Consistency section: https://sqlsync.dev/posts/stop-syncing-everything/#consisten... The key idea is that if your system supports offline writes, then by definition the client making those writes can't have general purpose strict serializability. They have to exist under the assumption that when their transactions eventually sync, they are no longer valid. Graft attempts to provide a strong foundation (server side commits are strictly serialized), however let's the client choose how to handle local writes. A client may choose any of these options: 1. If offline, reject all local writes - wait until we are online to commit 2. Rebase local writes on the latest snapshot when you come back online, resulting in the client experiencing "optimistic snapshot isolation" 3. Merge local changes with remote changes - this probably depends heavily on the datastructure you are storing in Graft. For example, storing a Conflict-Free Replicated Datatype (CRDT) would work nicely 4. Fork the Volume entirely and let the user figure out how to manually merge the branches back together 5. Throw away all local changes (probably not what you want, but it works!) My goal is to build a building block on top of which edge native systems can be built. But I'm not too opinionated about what local write semantic you're application needs. :) (edit: added newlines between list items) | |||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | kiitos 2 days ago | parent [-] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
What you've said here is totally different to what the repo docs claim. The guarantees of Graft's "commit" operation are properties of the Graft system itself. If commit is e.g. strict-serializable when clients satisfy one set of requirements, and isn't strict-serializable if clients don't satisfy those requirements, then "commit" is not strict-serializable. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|