Re: How to stress test collections in Cassandra Stress

2017-04-25 Thread Alain RODRIGUEZ
Hi 'luckiboy'. You have been trying to unsubscribe from Cassandra dev and user list lately. To do so, sending "unsubscribe" in a message is not the way to go as you probably noticed by now. It just spam people on those lists. As written here http://cassandra.apache.org/community/, you actually h

Re: How to stress test collections in Cassandra Stress

2017-04-24 Thread LuckyBoy
unsubscribe On Thu, Apr 13, 2017 at 7:26 AM, eugene miretsky wrote: > Hi, > > I'm trying to do a stress test on a a table with a collection column, but > cannot figure out how to do that. > > I tried > > table_definition: | > CREATE TABLE list ( > customer_id bigint, > items list, >

Re: How to stress test collections in Cassandra Stress

2017-04-24 Thread Ahmed Eljami
Hi, Collections are not supported in cassandra-stress tool. I suggest you use Jmeter with cassandra java driver to do your stress test with collection or Spark. 2017-04-13 16:26 GMT+02:00 eugene miretsky : > Hi, > > I'm trying to do a stress test on a a table with a collection column, but > c

How to stress test collections in Cassandra Stress

2017-04-13 Thread eugene miretsky
Hi, I'm trying to do a stress test on a a table with a collection column, but cannot figure out how to do that. I tried table_definition: | CREATE TABLE list ( customer_id bigint, items list, PRIMARY KEY (customer_id)); columnspec: - name: customer_id size: fixed(64) pop