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 have
to send an email to both user-unsubscr...@cassandra.apache.org and
dev-unsubscr...@cassandra.apache.org.

Cheers,
---
Alain Rodriguez - @arodream - al...@thelastpickle.com
France

The Last Pickle - Apache Cassandra Consulting
http://www.thelastpickle.com

2017-04-24 15:08 GMT+02:00 LuckyBoy :

> unsubscribe
>
> On Thu, Apr 13, 2017 at 7:26 AM, eugene miretsky <
> eugene.miret...@gmail.com> 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,
>> PRIMARY KEY (customer_id));
>>
>> columnspec:
>>   - name: customer_id
>> size: fixed(64)
>> population: norm(0..40M)
>>   - name: items
>> cluster: fixed(40)
>>
>> When running the benchmark, I get: java.io.IOException: Operation x10 on
>> key(s) [27056313]: Error executing: (NoSuchElementException)
>>
>>
>>
>


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,
> PRIMARY KEY (customer_id));
>
> columnspec:
>   - name: customer_id
> size: fixed(64)
> population: norm(0..40M)
>   - name: items
> cluster: fixed(40)
>
> When running the benchmark, I get: java.io.IOException: Operation x10 on
> key(s) [27056313]: Error executing: (NoSuchElementException)
>
>
>


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
> 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)
> population: norm(0..40M)
>   - name: items
> cluster: fixed(40)
>
> When running the benchmark, I get: java.io.IOException: Operation x10 on
> key(s) [27056313]: Error executing: (NoSuchElementException)
>
>
>


-- 
Cordialement;

Ahmed ELJAMI


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)
population: norm(0..40M)
  - name: items
cluster: fixed(40)

When running the benchmark, I get: java.io.IOException: Operation x10 on
key(s) [27056313]: Error executing: (NoSuchElementException)