I have a single node Cassandra database running with all data stored using one table. In this table I have the data split up using partition keys and clustering keys. Can I query this table, using a Java based client, to read from each partition in parallel?
On my client I want to start four threads where each thread will query the single Cassandra table simultaneously with a simple query -> 'select * from tablename where column1 = partitionID'
I realise it is much better to implement a Cassandra cluster but at the moment it is essential to use a single node system.