WildFly JGroups Subsystem Configuration: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
* EAP 6.4 | * EAP 6.4 | ||
=Overview= | |||
<pre> | |||
<subsystem xmlns="urn:jboss:domain:jgroups:1.1" default-stack="udp"> | |||
<stack name="udp"> | |||
<transport type="UDP" socket-binding="jgroups-udp"/> | |||
<protocol type="PING"/> | |||
<protocol type="MERGE3"/> | |||
<protocol type="FD_SOCK" socket-binding="jgroups-udp-fd"/> | |||
<protocol type="FD"/> | |||
<protocol type="VERIFY_SUSPECT"/> | |||
<protocol type="pbcast.NAKACK"/> | |||
<protocol type="UNICAST2"/> | |||
<protocol type="pbcast.STABLE"/> | |||
<protocol type="pbcast.GMS"/> | |||
<protocol type="UFC"/> | |||
<protocol type="MFC"/> | |||
<protocol type="FRAG2"/> | |||
<protocol type="RSVP"/> | |||
</stack> | |||
<stack name="tcp"> | |||
<transport type="TCP" socket-binding="jgroups-tcp"/> | |||
<protocol type="MPING" socket-binding="jgroups-mping"/> | |||
<protocol type="MERGE2"/> | |||
<protocol type="FD_SOCK" socket-binding="jgroups-tcp-fd"/> | |||
<protocol type="FD"/> | |||
<protocol type="VERIFY_SUSPECT"/> | |||
<protocol type="pbcast.NAKACK"/> | |||
<protocol type="UNICAST2"/> | |||
<protocol type="pbcast.STABLE"/> | |||
<protocol type="pbcast.GMS"/> | |||
<protocol type="UFC"/> | |||
<protocol type="MFC"/> | |||
<protocol type="FRAG2"/> | |||
<protocol type="RSVP"/> | |||
</stack> | |||
</subsystem> | |||
</pre> |
Revision as of 00:41, 24 February 2016
Internal
Relevance
- EAP 6.4
Overview
<subsystem xmlns="urn:jboss:domain:jgroups:1.1" default-stack="udp"> <stack name="udp"> <transport type="UDP" socket-binding="jgroups-udp"/> <protocol type="PING"/> <protocol type="MERGE3"/> <protocol type="FD_SOCK" socket-binding="jgroups-udp-fd"/> <protocol type="FD"/> <protocol type="VERIFY_SUSPECT"/> <protocol type="pbcast.NAKACK"/> <protocol type="UNICAST2"/> <protocol type="pbcast.STABLE"/> <protocol type="pbcast.GMS"/> <protocol type="UFC"/> <protocol type="MFC"/> <protocol type="FRAG2"/> <protocol type="RSVP"/> </stack> <stack name="tcp"> <transport type="TCP" socket-binding="jgroups-tcp"/> <protocol type="MPING" socket-binding="jgroups-mping"/> <protocol type="MERGE2"/> <protocol type="FD_SOCK" socket-binding="jgroups-tcp-fd"/> <protocol type="FD"/> <protocol type="VERIFY_SUSPECT"/> <protocol type="pbcast.NAKACK"/> <protocol type="UNICAST2"/> <protocol type="pbcast.STABLE"/> <protocol type="pbcast.GMS"/> <protocol type="UFC"/> <protocol type="MFC"/> <protocol type="FRAG2"/> <protocol type="RSVP"/> </stack> </subsystem>