Re: High Bloom filter false ratio

2016-02-21 Thread Anishek Agarwal
Hey guys, Just did some more digging ... looks like DTCS is not removing old data completely, I used sstable2json for one such table and saw old data there. we have a value of 30 for max_stable_age_days for the table. One of the columns showed data as :["2015-12-10 11\\:03+0530:", "56690ea2",

Re: High Bloom filter false ratio

2016-02-21 Thread Anishek Agarwal
We are using DTCS have a 30 day window for them before they are cleaned up. I don't think with DTCS we can do anything about table sizing. Please do let me know if there are other ideas. On Sat, Feb 20, 2016 at 12:51 AM, Jaydeep Chovatia < chovatia.jayd...@gmail.com> wrote: > To me following

Re: Gossip Protocol

2016-02-21 Thread Thouraya TH
Can you give me more details please ? Thanks a lot. 2016-02-21 20:24 GMT+01:00 Jonathan Haddad : > You don't need to use Gossip to store that, you can just put it in a > table. > > On Sun, Feb 21, 2016 at 9:38 AM Thouraya TH wrote: > >> Thank you so

Re: Gossip Protocol

2016-02-21 Thread Jonathan Haddad
You don't need to use Gossip to store that, you can just put it in a table. On Sun, Feb 21, 2016 at 9:38 AM Thouraya TH wrote: > Thank you so much for answers :) > > > *What type of info did you wish to pass around?* > [image: Images intégrées 1] > > In fact, i have on

Re: Gossip Protocol

2016-02-21 Thread Thouraya TH
Thank you so much for answers :) *What type of info did you wish to pass around?*[image: Images intégrées 1] In fact, i have on each node a directory ‘MyFiles’ which contains three files (E.g file1v2.txt, file2v1.txt, file3v4.txt) I’d like to modify this interface and add another column.

Re: Gossip Protocol

2016-02-21 Thread Jack Krupansky
You can start by using the nodetool gossipinfo command and also look at the ApplicationState source code: https://github.com/apache/cassandra/blob/cassandra-3.1.1/src/java/org/apache/cassandra/gms/ApplicationState.java That application state is not currently user-extensible for Cassandra users.

RE: Gossip Protocol

2016-02-21 Thread Amit Singh F
Hello, To get detailed description/Architecture of Gossip protocol please check the below link : https://wiki.apache.org/cassandra/ArchitectureGossip Also you can try nodetool gossipinfo command , output of this will guide you on details saved by gossip. Regards Amit Singh From: Thouraya TH

Gossip Protocol

2016-02-21 Thread Thouraya TH
Hi all; Please, where can i find what are the details saved by gossip protocol ? Is it possible to add other informations to informations exchanged between nodes using gossip protcol ? Thank you so much. Kind regards.