[Hi, I asked this question in the morning but could not get any response or feedback from the community..I would like to bring it up to really get some help from community around..]
I am working on an web-application using Java and backed by Cassandra-a NoSQL database.
Cassandra allows for highly concurrent database operations and in batches of huge no of operations, in a single go. They recommend using batch sizes like hundreds of operations in a single batch operation. But I am unable to figure out, how I can efficiently merge database operations required/submitted by hundreds of concurrent users on my application. What is the way of merging these operations in batches ?
EDIT : I know how to submit batch query to the database, but what I am seeking is how do I collect the queries that are requested/submitted by several concurrent user sessions in a single batch ?