I am new to JMeter and Cassandra and trying to use the Apache Jmeter Cassandra plugin to test the target
https://github.com/Netflix/CassJMeter/wiki
Following the steps below, I was able to configure the JMeter Cassandra plugin.
In the JMeter console, I created a new ThreadGroup-> CassandraProperties and set all the properties associated with Cassandra. 
SchemaProperties features added as shown below. 
Added Cassandra Get Range snippet 
But when I start testing, I get a success response in the sample, but my response data is empty 
My Users table is not empty, using cql, I can request data, its scheme looks like this:
CREATE TABLE users ( user_name text, gender text, password text, PRIMARY KEY ((user_name)) ) WITH bloom_filter_fp_chance=0.010000 AND caching='KEYS_ONLY' AND comment='' AND dclocal_read_repair_chance=0.100000 AND gc_grace_seconds=864000 AND index_interval=128 AND read_repair_chance=0.000000 AND replicate_on_write='true' AND populate_io_cache_on_flush='false' AND default_time_to_live=0 AND speculative_retry='99.0PERCENTILE' AND memtable_flush_period_in_ms=0 AND compaction={'class': 'SizeTieredCompactionStrategy'} AND compression={'sstable_compression': 'LZ4Compressor'};
So, when I start the Jmeter console, should I get 100 counting results and some response data is also correct? I am stuck here and cannot understand ... any help would be appreciated.
source share