Thanks Daniel for your email. I have around one millions unique rows in Cassandra database.
I have a single cluster with four nodes. I have created keyspace like this-
create keyspace profilekeyspace
with placement_strategy = 'NetworkTopologyStrategy'
and strategy_options = {DC2 : 1, DC1 : 1}
and durable_writes = true;
And my column family name is- `profile_columnfamily`
These are my four nodes-
lp-host01.vip.slc.qa.host.com:9160 lp-host02.vip.slc.qa.host.com:9160 lp-host03.vip.phx.qa.host.com:9160 lp-host04.vip.phx.qa.host.com:9160I have Key Caching enabled and SizeTieredCompaction strategy is enabled as well.
As I was trying to measure the read latency of Cassandra database using Pelops client. And also I am not doing this test locally, we have Cassandra database installed in LnP environment and I am running my client program from similar machines as well..
I started my client program initially with 2,3,4,5,6,7,8,9,10 threads and all the time I got 95th percentile as 1 milliseconds.
Let me know if this still looks right to you.