Re: Slow writes and Frequent timeouts

2017-04-25 Thread Akshay Suresh
Hi Ya sure - The contents of my file foo.yaml file are as follows: keyspace: benchmark table: foo insert: partitions: fixed(1) columnspec: - name: field1 size: fixed(10) - name: field2 size: fixed(11) population: fixed(1) - name: field3 size: fixed(10) - name: field4

Re: cassandra OOM

2017-04-25 Thread Carlos Rolo
To add some contribution to this thread, we have seen both cases. CMS easily outperforming G1 for the same Heapsize and the inverse too. On the same cluster different workloads (datacenter based) we have both collectors because of performance based on the workload. It would be good to colect this

RE: cassandra OOM

2017-04-25 Thread Durity, Sean R
We have seen much better stability (and MUCH less GC pauses) from G1 with a variety of heap sizes. I don’t even consider CMS any more. Sean Durity From: Gopal, Dhruva [mailto:dhruva.go...@aspect.com] Sent: Tuesday, April 04, 2017 5:34 PM To: user@cassandra.apache.org Subject: Re: cassandra OOM

Re: Will query on PK read entire partition?

2017-04-25 Thread Vladimir Yudovin
Hi, if you provide primary key C* will not scan whole partition, but will bloom filter to determinate SSTable: Cassandra uses Bloom filters to determine whether an SSTable has data for a particular row. Bloom filters are unused for range scans, but are used for index scans. Best

Re: Testing Stratio Index Queries with Cassandra-Stress Tool

2017-04-25 Thread DuyHai Doan
Use Gatling with the CQL plugin: https://github.com/gatling-cql/GatlingCql On Tue, Apr 25, 2017 at 2:36 PM, Akshay Suresh < akshay.sur...@unotechsoft.com> wrote: > Hi > > I have a set of tables with Stratio Index. > > Is there anyway to test Stratio based SELECT queries using the >

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

Re: Cassandra Cluster Doubts

2017-04-25 Thread Vladimir Yudovin
Hi Luis, I don't thinks it's possible to achieve this by custom Snitch. As far as I understand Snitch only provides cluster topology, and connectivity is done by another component/layer. And each cluster node should be able to connect to every other node. So I would keep with Michael's

Re: Drop tables takes too long

2017-04-25 Thread Bohdan Tantsiura
Thanks Zhao Yang, > Could you try some jvm tool to find out which thread are allocating memory or gc? maybe the migration stage thread.. I use Cassandra Cluster Manager to locally reproduce the issue. I tried to use VisualVM to find out which threads are allocating memory, but VisualVM does not

Re: Slow writes and Frequent timeouts

2017-04-25 Thread Akshay Suresh
Hi It turned out to be an issue in my yaml file - Each record had a size in GB. I modified my yaml and I am getting good results. Thanks for the support. Cheers. On Tue, Apr 18, 2017 at 11:45 AM, Akshay Suresh < akshay.sur...@unotechsoft.com> wrote: > Hi > > > - Hardware Specs > RAM: 14GB >

Testing Stratio Index Queries with Cassandra-Stress Tool

2017-04-25 Thread Akshay Suresh
Hi I have a set of tables with Stratio Index. Is there anyway to test Stratio based SELECT queries using the cassandra-stress-tool? Thanks in advance. -- Regards, *Akshay Suresh* *Unotech Software Pvt. Ltd* * * M : +91 99309 80509 O : +91 (22) 2687 9402 A : D

[Cassandra] nodetool compactionstats not showing pending task.

2017-04-25 Thread Abhishek Kumar Maheshwari
Hi All, In Production, I am using Cassandra 3.0.9. While I am running nodetool compactionstats command its just showing count not any other information like below: [mohit.kundra@AdtechApp bin]$ ./nodetool -h XXX.XX.XX.XX compactionstats pending tasks: 3 [mohit.kundra@AdtechAppX bin]$

RE: Slow writes and Frequent timeouts

2017-04-25 Thread ZAIDI, ASAD A
Would you please share what changes you made that proves helpful for you? From: Akshay Suresh [mailto:akshay.sur...@unotechsoft.com] Sent: Tuesday, April 25, 2017 7:33 AM To: user@cassandra.apache.org Subject: Re: Slow writes and Frequent timeouts Hi It turned out to be an issue in my yaml file