1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<?xml version="1.0" encoding="UTF-8"?>
<server>
<!--
A bunch of JGroups channels which can be used by other services
Author: Bela Ban
-->
<mbean code="org.jgroups.jmx.JChannel" name="jgroups:name=DemoChannel">
<attribute name="ObjectName">jgroups:name=DemoChannel</attribute>
<attribute name="ReceiveLocalMessages">true</attribute>
<attribute name="AutoReconnect">true</attribute>
<attribute name="AutoGetState">true</attribute>
<attribute name="ClusterName">DemoChannel</attribute>
<attribute name="ClusterConfig">
<config>
<!-- UDP: if you have a multihomed machine,
set the bind_addr attribute to the appropriate NIC IP address -->
<!-- UDP: On Windows machines, because of the media sense feature
being broken with multicast (even after disabling media sense)
set the loopback attribute to true -->
<UDP mcast_port="56677"
ip_ttl="32" ip_mcast="true"
mcast_send_buf_size="80000" mcast_recv_buf_size="150000"
ucast_send_buf_size="80000" ucast_recv_buf_size="150000"
loopback="true"/>
<PING timeout="2000" num_initial_members="3"/>
<MERGE2 min_interval="10000" max_interval="20000"/>
<FD />
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK gc_lag="50" retransmit_timeout="600,1200,2400,4800"
/>
<UNICAST timeout="600,1200,2400"/>
<pbcast.STABLE desired_avg_gossip="20000"/>
<FRAG frag_size="8192"/>
<pbcast.GMS join_timeout="5000"
print_local_addr="true"/>
<pbcast.STATE_TRANSFER />
</config>
</attribute>
</mbean>
</server>
|