Apple's secret NoSQL sauce includes a hefty dose of Cassandra
techrepublic.com
Apple's secret NoSQL sauce includes a hefty dose of Cassandra
1–10 of 10 posts
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#2http://www.businessinsider.com/why-apple-bought-foundationdb...
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#3Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#4I thought that they intended to replace Cassandra with FoundationDB: http://www.businessinsider.com/why-apple-bought-foundationdb...
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#5Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#6this seems like an ad for cassandra, many comments on how it scales and how partitioning is easy but no concrete examples at all. Having used cassandra in the past, it sure isn't the holy grail of nosql dbs, especially not for analytics that this article suggests
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#7this seems like an ad for cassandra, many comments on how it scales and how partitioning is easy but no concrete examples at all. Having used cassandra in the past, it sure isn't the holy grail of nosql dbs, especially not for analytics that this article suggests
Then again, it's been 5 years since I worked with it, there have been improvements. Back then it had a _lot_ of warts, and I spent a lot of time fighting JVM GC pauses.
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#8this seems like an ad for cassandra, many comments on how it scales and how partitioning is easy but no concrete examples at all. Having used cassandra in the past, it sure isn't the holy grail of nosql dbs, especially not for analytics that this article suggests
I have used Cassandra in the past and would consider using it again but I agree its strength is not for 'analytics'. I'd say its strength is needing to scale reads and writes out on large large quantities of relatively simple data that you do not want to lose and you need low latency access to, and for when data needed to be easily partitioned across machines and data centres. I used it for data needed in realtime bi…
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#9Earlier quoted context omitted.
I have used Cassandra in the past and would consider using it again but I agree its strength is not for 'analytics'. I'd say its strength is needing to scale reads and writes out on large large quantities of relatively simple data that you do not want to lose and you need low latency access to, and for when data needed to be easily partitioned across machines and data centres. I used it for data needed in realtime bi…
Warts are still there, maybe worse with vnodes. Enjoy!
I do miss getting to play with stuff like that.
Re: Apple's secret NoSQL sauce includes a hefty dose of Cassandra
#10this seems like an ad for cassandra, many comments on how it scales and how partitioning is easy but no concrete examples at all. Having used cassandra in the past, it sure isn't the holy grail of nosql dbs, especially not for analytics that this article suggests
Can you expand on why Cassandra is not good for analytics? Is that because you have to think of the queries before designing the data model? Or perhaps there are other issues?