Questions tagged [cassandra-stress]

The `cassandra-stress` tool is a Java-based stress testing utility for basic benchmarking and load testing a Cassandra cluster.

The cassandra-stress tool is a Java-based stress testing utility for basic benchmarking and load testing a Cassandra cluster. It allows to check the behavior of the schema by populating the database cluster and supporting stress testing of arbitrary CQL tables and arbitrary queries on tables.

47 questions
1
vote
1 answer

How to inject specific amount of data using Cassandra stress tool say 100Gb, 200GB, 300GB?

We need to benchmark, the time taken for cluster to balance when you by varying the load say 100GB, 200GB 300GB. Does someone know how to inject data of these varying sizes using cassandra stress tool? P.S. I have been using this command to load…
1
vote
2 answers

Inserting into a specific schema with Cassandra stress tool

Cassandra-stress tool inserts data into the default keyspace Keyspace1. How can I insert into a specific keyspace? Thanks Smitha
1
vote
2 answers

cassandra-stress 2.1.2 windows yaml file path illegal character

I have downloaded Cassandra community edition 2.1.2 (I know its a latest development release currently hence may not be stable). The reason being newer version of cassandra-stress tool which support YAML based configuration which enables to run the…
vm7
  • 11
  • 1
0
votes
0 answers

Cassandra Stress - Limit items in the List Data Type

Using cassandra-stress for benchmarking. Is there any support to limit number of items in the list? CREATE TABLE keyspace1.users ( username text, user_fav_movies list, PRIMARY KEY (username) Cassandra-stress table user profile: name:…
Atish
  • 4,277
  • 2
  • 24
  • 32
0
votes
0 answers

stress testing of models having nested UDT cassandra

I have a model having nested UDT. How to perform stress testing for models. cassandra version: 4.1 I have tried changing the data type to string, but can we conclude on result?
0
votes
1 answer

Use cassandra-stress tool to insert specific data, not random

Is't possible to use cassandra-stress to insert specific data instead of random data ? If yes, how we can do it?
Sholi
  • 11
  • 5
0
votes
1 answer

Cassandra TLP-Stress Tarball Installation

I have just downloaded tarball tlp-stress for cassandra and extracted and found some jars. what the next step to run stress test? Thanks.
LetsNoSQL
  • 1,478
  • 1
  • 11
  • 23
0
votes
1 answer

Cassandra-stress file not found exception

I'm trying to run cassandra-strees with defined own .yaml file but I'm still gettin an error : java.io.IOError: java.io.FileNotFoundException: /home/kenik/Documents/stress.yaml (No such file or directory) Which is very troublesome for me. Let's me…
kenik
  • 142
  • 3
  • 13
0
votes
1 answer

How to calibrate cassandra-stress graph option?

I managed to run stress tool outside the cluster. I a;ready have basic table bank_transactions in bank keyspace on my cassa cluster. bank.bank_transactions ( customerid text, year int, month int, id timeuuid, amount int, …
la_femme_it
  • 632
  • 10
  • 24
0
votes
1 answer

Elassandra - Error: Could not find or load main class org.apache.cassandra.stress.Stress

I'm trying to run an cassandra-stress on a elassandra cluster. Buy I'm always getting this error: $pwd /usr/share/cassandra/tools/bin $./cassandra-stress Error: Could not find or load main class org.apache.cassandra.stress.Stress E edited the…
Rui Martins
  • 3,337
  • 5
  • 35
  • 40
0
votes
1 answer

Unable to run Cassandra-Stress

I'm getting below error when running cassandra-stress command ./cassandra-stress user profile=/home/cass/apache-cassandra-3.11.2/tools/stress_test.yaml duration=1m "ops(insert=1,latest_event=1,events=1)" I'm getting the below…
Vishal Sharma
  • 1,670
  • 20
  • 55
0
votes
0 answers

Cassandra Stress tool does not honor Consistency Level when using profiles

I am trying to run a stress test using the cassandra-stress tool with profiles on a 6 node cluster with a replication factor=3. ./cassandra-stress user profile=/path/to/cassandra_stress.yaml duration=2h ops\(insert=20,select=10\) **cl=local_quorum**…
Chirag
  • 11
  • 2
0
votes
1 answer

Using cassandra-stress to write columns of 100 MB

I want to write partitions of 100 MB, using the stress tool in Cassandra 2.1.17. For the sake of simplicity, firstly I'm just trying to write one partition with a single column. My stress yaml looks like this: keyspace:…
Pedro Gordo
  • 1,825
  • 3
  • 21
  • 45
0
votes
1 answer

Generating time series data using cassandra stress test

Is it possible to configure Cassandra stress test tool to generate insert workload for time-series data. More specifically provide a columnspec property on a timestamp column that will either Increment the inserted value as the test progresses…
EugeneMi
  • 3,475
  • 3
  • 38
  • 57
0
votes
1 answer

Mixed load cassandra-stress test

Need some help regarding cassandra stress testing. I have installed the cassandra-stress 2.1 tool from datastax website. I want to do Read+Write stress testing in the ratio of 10:1 and using 15 threads. I somehow cant get it to work. I am able to…