Re: Recommendation for Storage Backend
Peter Corless <pe...@...>
Comments inline. On Thu, Oct 29, 2020, 9:06 AM Bassem Naguib <bass...@...> wrote:
Everyone's going to have a bias, and I want to be transparent. I work for ScyllaDB, so of course I think they are the best. I will do my best, however, to give you reasons which I hope prove sufficiently helpful.
That sounds appropriate. You might segregate user data in Scylla, which underlies JanusGraphc, via separate tables or even completely separate keyspaces.
Yes. Scylla would automatically shard data across nodes. Whatever persistent database you choose to reside under JanusGraph, make sure it automatically shards data across nodes.
No, but there are problems by having neighbors at all. Heartbleed-like attacks such as Zombieload. We wrote this up as a piece for people who wish to think about ways to protect against attacks from neighbors, noisy or otherwise.
...this is a fundamental tug of war. Because ACID is specifically not as fast as possible to provide consistency. ScyllaDB is written not with a full ACID guarantee. Like Cassandra it leans to the AP-mode of the CAP theorem rather than CP. But we do have LWT. And our LWT implementation is inherently more efficient than the design decisions Cassandra made — less round trips, for instance. But adding *any* sort of linearizabity, or any strict consistency levels like CL=ALL), is going to increase your latencies and/or lower your throughput, unless (or even if) you scale in terms of, say, capacity and concurrency. Those have their own prices, limits and tradeoffs, too. That's just the nature of it. It is vital for you to really think which is most vital: strict ACID consistency or performance / availability. You can read more about our LWT implementation here. Other vendors can definitely claim more strict adherence to ACID. The question would be to clarify for your use case which are the higher priorities, and what your SLAs for each might be. • Latency • Throughput • Availability • Consistency (even at the sacrifice of the above three) • "Correctness" in terms of ACID compliance When it comes down to it, our users feel the top three win out over the bottom two. But this is definitely a use-case specific judgment call for you. A couple of real-world use cases to consider: Sincerely, -Peter Corless.
|
|