I am new to JMeter and Cassandra and trying to use Apache Jmeter Cassandra Plugin for Testing Purpose
https://github.com/Netflix/CassJMeter/wiki
By following the steps given there i was able to configure JMeter Cassandra Plugin.
In the JMeter Console I created a New ThreadGroup->CassandraProperties and specified all the Cassandra related properties in there.
Added SchemaProperties as below.
Added a Cassandra Get Range Slice
But when i start testing i get a success response in the sample result but my response data is empty
My Users table is not empty using cql i can query data, its schema is as follows:
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 execute the Jmeter console i should get the 100 count result and some response data too right? I am stucked here and unable to understand ...any help will be appreciated.