RE: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Kenneth Brotman
Way to go Marco! From: Marco Giovannini [mailto:usern...@gmail.com] Sent: Friday, March 02, 2018 2:45 AM To: Nicolas Guyomar Cc: user@cassandra.apache.org Subject: Re: failing GOSSIP on localhost flooding the debug log CASSANDRA-14285 <https://issues.apache.org/jira/browse/CASSANDRA-14

Re: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Marco Giovannini
CASSANDRA-14285 Regards, Marco On Fri, Mar 2, 2018 at 11:33 AM, Marco Giovannini wrote: > Hi, > > I'll use your code to fill up a Jira ticket. > > Regards, > Marco > > On Fri, Mar 2, 2018 at 11:26 AM, Marco Giovannini

Re: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Marco Giovannini
Hi, I'll use your code to fill up a Jira ticket. Regards, Marco On Fri, Mar 2, 2018 at 11:26 AM, Marco Giovannini wrote: > Hi > > You morning guess ended up to be right. :) > > Sometimes a couple of fresh eyes are priceless. > > Thanks Nicolas. > > Regards, > Marco > > On

Re: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Marco Giovannini
Hi You morning guess ended up to be right. :) Sometimes a couple of fresh eyes are priceless. Thanks Nicolas. Regards, Marco On Fri, Mar 2, 2018 at 11:14 AM, Nicolas Guyomar wrote: > Hi Marco, > > Could that be because your seed list has an extra comma in the end

Re: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Nicolas Guyomar
Whoops click "send" to fast In SImpleSeedProvider : String[] hosts = "10.1.20.10,10.1.21.10,10.1.22.10,".split(",", -1); List seeds = new ArrayList(hosts.length); for (String host : hosts) { System.out.println(InetAddress.getByName(host.trim())); } output : /10.1.20.10 /10.1.21.10 /10.1.22.10

Re: failing GOSSIP on localhost flooding the debug log

2018-03-02 Thread Nicolas Guyomar
Hi Marco, Could that be because your seed list has an extra comma in the end of the line, thus being interpreted by default as localhost by Cassandra ? And because you are listening on the node IP localhost is not reachable (need to check to code to be sure) Here => seeds: