JGroups
   HOME

TheInfoList



OR:

JGroups is a library for reliable one-to-one or one-to-many communication written in the
Java Java (; id, Jawa, ; jv, ꦗꦮ; su, ) is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea to the north. With a population of 151.6 million people, Java is the world's List ...
language. It can be used to create groups of processes whose members send messages to each other. JGroups enables developers to create reliable multipoint (multicast) applications where reliability is a deployment issue. JGroups also relieves the application developer from implementing this logic themselves. This saves significant development time and allows for the application to be deployed in different environments without having to change code.


Features

* Group creation and deletion. Group members can be spread across LANs or WANs * Joining and leaving of groups * Membership detection and notification about joined/left/crashed members * Detection and removal of crashed members * Sending and receiving of member-to-group messages (point-to-multipoint) * Sending and receiving of member-to-member messages (point-to-point)


Code sample

This code below demonstrates the implementation of a simple command-line
IRC Internet Relay Chat (IRC) is a text-based chat system for instant messaging. IRC is designed for group communication in discussion forums, called '' channels'', but also allows one-on-one communication via private messages as well as chat an ...
client using JGroups: public class Chat extends ReceiverAdapter A JChannel is instantiated from an XML configuration (e.g. ). The channel is the endpoint for joining a cluster. Next, the receiver is set, which means that two callbacks will be invoked: * when a new member joins, or an existing member leaves the cluster * when a message from some other cluster member is received Then, the channel joins cluster "ChatCluster". From now, messages can be sent and received, plus a new view (including this member) will be installed in all cluster members (including the newly joined member). Anything typed in the main loop results in the creation of a message to be sent to all cluster members, including the sender. Instances of the chat application can be run in the same process, on the same box, on different hosts in the local network, on hosts in different networks, or in the cloud. The code remains the same; only the configuration needs to be changed. For example, in a local network, IP multicasting might be used. When IP multicasting is disabled, TCP can be used as transport. When run in the cloud, TCP plus a cloud discovery protocol would be used and so on...


Flexible protocol stack

The most powerful feature of JGroups is its flexible protocol stack, which allows developers to adapt it to exactly match their application requirements and network characteristics. The benefit of this is that you only pay for what you use. By mixing and matching protocols, various differing application requirements can be satisfied. JGroups comes with a number of protocols (but anyone can write their own), for example * Transport protocols: UDP (
IP multicast IP multicast is a method of sending Internet Protocol (IP) datagrams to a group of interested receivers in a single transmission. It is the IP-specific form of multicast and is used for streaming media and other network applications. It uses speci ...
), TCP * Fragmentation of large messages * Discovery protocols to discover the initial membership for a joining node * Reliable unicast and multicast message transmission. Lost messages are retransmitted * Failure detection: crashed members are excluded from the membership * Ordering protocols: Fifo, Total Order (sequencer or token based) * Membership and notification of joined or crashed members * Network partition (split brain) detection and merging * Flow control * Encryption and authentication (including SASL support) * Compression


Building blocks

Building blocks are classes layered over JGroups channels, which provide higher-level abstractions such as * RPCs to individual or all cluster nodes * Distributed caches * Distributed locks * Distributed atomic counters * Distributed task execution


References

{{Reflist


External links


The JGroups website

A simple request distribution example in JGroups

A slideshow presenting JGroups
Computer networking Java (programming language) software