Re: overhead of the Gossip protocol

2012-11-27 Thread Jonathan Ellis
Because one message per second is dwarfed by user request traffic even with 1000s of nodes. (vnodes may make this a bigger concern down the road.) On Tue, Nov 27, 2012 at 6:14 PM, Isaac Huang wrote: > Hi list, > > I've been looking at the Cassandra implementation of the gossip > protocol, and it

overhead of the Gossip protocol

2012-11-27 Thread Isaac Huang
Hi list, I've been looking at the Cassandra implementation of the gossip protocol, and it appeared to me that the size of each GossipDigestSynMessage would grow linearly with the size of the system: makeRandomGossipDigest(): .. List endpoints = new ArrayList(endpointStateMap.keySet()); Colle