Re: Node Gossiping Information.

2017-04-06 Thread Pranay akula
I am using cassandra 2.1, is it possible to manually make a node to gossip with a particular set of nodes or update gossip info to current to a particular node. I don't think it's possible just checking if that can be done. As i have mentioned i occasionally see hinted handoff threads getting

Re: Node Gossiping Information.

2017-04-04 Thread Jeff Jirsa
Cassandra uses system.peers to record the list of peers for subsequent startups, but gossip state is only in memory You shouldn't ever manually need to disable/re-enable gossip unless you want the rest of the ring to believe a node went offline/online. What version are you using? On Tue, Apr 4,

Re: Node Gossiping Information.

2017-04-04 Thread Pranay akula
@Jeff thanks for your reply, What i am trying to find is where Gossip data will be stored on, which Keyspace ?? The nodes will Gossip at the time of their start or will get Gossiping Data from seed nodes, What i wanted to do is can we refresh the Gossiping Data with out restarting service, I

Re: Node Gossiping Information.

2017-04-03 Thread Jeff Jirsa
On 2017-04-02 11:27 (-0700), Pranay akula wrote: > where can we check gossip information of a node ?? I couldn't find > anything in System keyspace. > > Is it possible to update or refresh Gossiping information on a node without > restarting. Does enabling and

Node Gossiping Information.

2017-04-02 Thread Pranay akula
where can we check gossip information of a node ?? I couldn't find anything in System keyspace. Is it possible to update or refresh Gossiping information on a node without restarting. Does enabling and disabling Gossip will help to refresh Gossip information on that node. Thanks Prany.