Vitess and Citus seem to be half-way between manual sharding and distributed SQL. They really discourage cross-shard updates, for instance, whereas they're a really natural part of distributed SQL:
> The authors of Vitess recommend that you design your VSchema so that cross-shard updates (and 2PC) are not required.
https://vitess.io/docs/reference/features/two-phase-commit/Maybe though it's just a fundamental coordination problem one can't work around.
simonw|4 years ago
The value I want is help directing those write queries to the correct shards, and some assistant with cross-shard read queries.