Reputation: 6258
I'm looking a distributed, real-time data access tool. I've read that HBase is the HadoopSQL solution which is a Java clone of Google Big Table, but is more suited for batch jobs than real time access (and is slow because of all the read-write). I've also read that Cassandra is for "high availability".
Is my understanding of this correct? Is Cassandra better suited for a real-time database (that's distributed) than HBase or BigTable?
Upvotes: 0
Views: 915
Reputation: 2711
In terms of Bigtable... From the cloud bigtable docs
Cloud Bigtable is Google's NoSQL Big Data database service. It's the same database that powers many core Google services, including Search, Analytics, Maps, and Gmail.
Bigtable is designed to handle massive workloads at consistent low latency and high throughput, so it's a great choice for both operational and analytical applications, including IoT, user analytics, and financial data analysis.
Upvotes: 1
Reputation: 8812
Is Cassandra better suited for a real-time database (that's distributed) than HBase or BigTable?
Yes, Cassandra is more suited to an OLTP workload whereas HBase is more suitable for an OLAP workload, in general
Upvotes: 2