Reputation: 31
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 specific number of rows-- cassandra-stress -d 192.168.127.48,192.168.127.44,192.168.127.47 -l 3 -n 10000 -o INSERT
However, this doesnt determine the size of data to be loaded. Thanks Smitha
Upvotes: 1
Views: 393
Reputation: 8067
You can define your own schema for the stress test where you can have more granular control on the size of the data being generated per row. See the section on Column Distributions here. You can define different size distributions for columns, you would probably want to do fixed distribution.
Upvotes: 0