Earlier quoted context omitted.
How so? Mind saying more?
I suppose that they are saying that CockroachDB is a single binary which you just drop on a machine and you are good to go. For ScyllaDB you need to install Java, Python and several ScyllaDB related packages.
ScyllaDB is Moving to a New Replication Algorithm: Tablets
11–20 of 27 posts
Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#12Earlier quoted context omitted.
Java? I thought the whole raison d'etre for ScyllaDB was "Cassandra without Java"?
The server implementation is, but administering it still requires the Java based Cassandra tooling like nodetool and cqlsh
Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#13Very similar to how BigTable[1] works under the hood which was built ~20 years ago. [1] https://static.googleusercontent.com/media/research.google.c...
What this post is describing for replication seems more comparable to Spanner.
Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#14Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#15Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#16Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#17Earlier quoted context omitted.
The server implementation is, but administering it still requires the Java based Cassandra tooling like nodetool and cqlsh
cqlsh is written in Python. Which doesn't mean it's less of a pain in the ass ;)
Just meant to say it does have tooling which requires other languages/environment specifics.
Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#18Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#19Very similar to how BigTable[1] works under the hood which was built ~20 years ago. [1] https://static.googleusercontent.com/media/research.google.c...
The load shifting part is similar to the way BigTable splits, merges, and assigns tablets. But the rest of it is not related, because BigTable does not try to offer mutation consistency across replicas. If you write to one replica of a BigTable, your mutation may be read at some other replica, after an undefined delay. Applications that need stronger consistency features must layer their own replication scheme atop B…
Re: ScyllaDB is Moving to a New Replication Algorithm: Tablets
#20This sounds a lot like ranges in CockroachDB. Anyone familiar with the deep details to highlight the differences?
I thought of the same thing, so I am trying to find information on the documentation about things that CockroachDB does very well: 1. Consistent backups/transactions. When a backup is made, is that a single point in time, or best-effort by individual tablet. For example, backing up an inventory and orders table, the backup could have an older version of inventory, where orders have already been completed for some of…
Definitely, but they are implementing Raft-based transactions which provide higher consistency. That should enable a higher variety of use cases.