-
1. Re: Intra-cluster communication protocol
nadirx Mar 20, 2019 5:38 AM (in response to zam0th)JGroups is used for all intra-cluster and cross-site communication.
JGroups handles all TCP/UDP communication, discovery, flow control, message fragmentation, cluster security and failure detection.
Infinispan uses JGroups messages to deliver its commands to the cluster nodes via a component we call Transport.
Sync and async replication are higher-level constructs that have little to do with the underlying transport.
So, when you mention fine-tuning, it depends whether you are concerned about the networking aspect or the cache replication aspect, but you can do both.
For example you'd tune JGroups to change the discovery protocol and timeouts, the failure detection algorithms and timeout, the flow control credits, the TCP/UDP buffer sizes. See JGroups 4.x's protocol list.
To tune Infinispan's clustering configuration you can do it per-cache: ClusteringConfigurationBuilder (Infinispan JavaDoc All 9.4.10.Final API) . Here you can set replication timeouts, state transfer details, etc.
If you have a specific need, ask here
Tristan
-
2. Re: Intra-cluster communication protocol
zam0th Mar 20, 2019 5:56 AM (in response to nadirx)Yes, i understand all that, but what is the protocol to transmit data itself, not control messages? E.g. when you modify contents of a cache, you need to replicate the data, how is it done? You can't do that with multicast, can you?
-
3. Re: Intra-cluster communication protocol
nadirx Mar 20, 2019 6:19 AM (in response to zam0th)It's all represented as Infinispan commands wrapped into a JGroups message.
For example, the command that corresponds to cache.put(k, v) is implemented by the following:
Commands are then sent to other nodes by org.infinispan.remoting.rpc.RpcManager. If a command is sent to all nodes, JGroups will use multicast if you are using UDP to send it, otherwise it will use unicast.
-
4. Re: Intra-cluster communication protocol
zam0th Mar 20, 2019 6:49 AM (in response to nadirx)nadirx wrote:
JGroups will use multicast if you are using UDP to send it, otherwise it will use unicast.
Oh, i see now, thank you! But how is that determined, i mean the "knowledge", the default configuration stating that syncrounous replication must use unicast and not anything else? Or is there anything else ?
-
5. Re: Intra-cluster communication protocol
nadirx Mar 20, 2019 7:04 AM (in response to zam0th)If you use a TCP transport, it will all be unicasts.