Re: Filling in the blank To Do sections on the Apache Cassandra web site

2018-02-23 Thread Rahul Singh
Ken I can help out with text or with drafting new stuff. I’ll review the list you provided and get back to you. -- Rahul Singh rahul.si...@anant.us Anant Corporation On Feb 23, 2018, 7:28 PM -0500, Kenneth Brotman , wrote: > These nine web pages on the Apache Cassandra web site have blank To D

Filling in the blank To Do sections on the Apache Cassandra web site

2018-02-23 Thread Kenneth Brotman
These nine web pages on the Apache Cassandra web site have blank To Do sections. Most of the web pages are completely blank. Mind you there is a lot of hard work already done on the documentation. I'll make JIRA's for any of the blank sections where there is not already a JIRA. Then it will be

RE: Cassandra Needs to Grow Up by Version Five!

2018-02-23 Thread Kenneth Brotman
A sincere thank you for everyone that replied. I will heavy lift the docs for a while, do my Slender Cassandra reference project and then I’ll try to find one or two areas where I can contribute code to get going on that. I'll have a few JIRA's started by the end of the workday. Kenneth Brot

Re: Why isn't there a separate JVM per table?

2018-02-23 Thread Rahul Singh
I agree with Jon. The actor based model would be the logical approach to get to be more “efficient.” Until then fault tolerance has to be built into the driver to contact another node if in the middle and then reconcile the commitlog later. I’ve seen many people combine an external queue to deal

Re: Why isn't there a separate JVM per table?

2018-02-23 Thread Brian Hess
Something folks haven't raised, but would be another impediment here is that in Cassandra if you submit a batch (logged or unlogged) for two tables in the same keyspace with the same partition then Cassandra collapses them into the same Mutation and the two INSERTs are processed atomically. Ther