On Fri, May 20, 2011 at 9:39 AM, pankajsoni0126 <pankajsoni0...@gmail.com> wrote: > I am working on version 0.7.6 of cassandra. I have been looking into the code > to identify communication between nodes. > > it seems to me that both inter-node and servernode-client communication > happens using thrift protocol, is my understanding correct?
No. inter-node communication uses MessagingService that itself uses OutboundTcpConnection that just write serialized Message to a tcp socket (using a message queue). None of this uses thrift. > and the gossiper communication takes place using tcp and message queue? Yes, but actually gossip uses MessagingService too. So gossip communication is really just one type of inter-node communication. -- Sylvain > > > > -- > View this message in context: > http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/Inter-node-communication-over-UDP-tp6358459p6384978.html > Sent from the cassandra-u...@incubator.apache.org mailing list archive at > Nabble.com. >