Hacker News new | ask | show | jobs
by ec109685 767 days ago
Why not funnel all writes to a single region and leverage simpler transaction semantics.
1 comments

Distributed consensus + fsync() determines the lower bound on commit latency. We have to wait for the data to be durable on a quorum of transaction logs before returning success for a transaction. That's usually 5-10ms, even within a single region.
5-10ms for consensus is forever!
For user based keys, that sounds nice. Except on multiplayer cases, again in these cases one might find alternative solution rather than KV. I don't remember reading that any other service offers this speed.