Advertisement
Guest User

RELAY2 nyc.xml

a guest
Dec 10th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.77 KB | None | 0 0
  1.  
  2. <!--
  3.  Default stack using IP multicasting. It is similar to the "udp"
  4.  stack in stacks.xml, but doesn't use streaming state transfer and flushing
  5.  author: Bela Ban
  6. -->
  7.  
  8. <config xmlns="urn:org:jgroups"
  9.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  10.        xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/jgroups.xsd">
  11.     <UDP
  12.         mcast_port="${jgroups.udp.mcast_port:45581}"
  13.         ip_ttl="4"
  14.         tos="8"
  15.         ucast_recv_buf_size="5M"
  16.         ucast_send_buf_size="5M"
  17.         mcast_recv_buf_size="5M"
  18.         mcast_send_buf_size="5M"
  19.         max_bundle_size="64K"
  20.         max_bundle_timeout="30"
  21.         enable_diagnostics="true"
  22.         thread_naming_pattern="cl"
  23.  
  24.         timer_type="new3"
  25.         timer.min_threads="2"
  26.         timer.max_threads="4"
  27.         timer.keep_alive_time="3000"
  28.         timer.queue_max_size="500"
  29.  
  30.         thread_pool.enabled="true"
  31.         thread_pool.min_threads="2"
  32.         thread_pool.max_threads="8"
  33.         thread_pool.keep_alive_time="5000"
  34.         thread_pool.queue_enabled="true"
  35.         thread_pool.queue_max_size="10000"
  36.         thread_pool.rejection_policy="discard"
  37.  
  38.         oob_thread_pool.enabled="true"
  39.         oob_thread_pool.min_threads="1"
  40.         oob_thread_pool.max_threads="8"
  41.         oob_thread_pool.keep_alive_time="5000"
  42.         oob_thread_pool.queue_enabled="false"
  43.         oob_thread_pool.queue_max_size="100"
  44.         oob_thread_pool.rejection_policy="discard"/>
  45.  
  46.     <PING />
  47.     <MERGE3 max_interval="30000"
  48.            min_interval="10000"/>
  49.     <FD_SOCK/>
  50.     <FD_ALL/>
  51.     <VERIFY_SUSPECT timeout="1500"  />
  52.     <BARRIER />
  53.     <pbcast.NAKACK2 xmit_interval="500"
  54.                    xmit_table_num_rows="100"
  55.                    xmit_table_msgs_per_row="2000"
  56.                    xmit_table_max_compaction_time="30000"
  57.                    max_msg_batch_size="500"
  58.                    use_mcast_xmit="false"
  59.                    discard_delivered_msgs="true"/>
  60.     <UNICAST3 xmit_interval="500"
  61.              xmit_table_num_rows="100"
  62.              xmit_table_msgs_per_row="2000"
  63.              xmit_table_max_compaction_time="60000"
  64.              conn_expiry_timeout="0"
  65.              max_msg_batch_size="500"/>
  66.     <pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
  67.                   max_bytes="4M"/>
  68.     <pbcast.GMS print_local_addr="true" join_timeout="2000"
  69.                view_bundling="true"/>
  70.     <UFC max_credits="2M"
  71.         min_threshold="0.4"/>
  72.     <MFC max_credits="2M"
  73.         min_threshold="0.4"/>
  74.     <FRAG2 frag_size="60K"  />
  75.     <RSVP resend_interval="2000" timeout="10000"/>
  76.     <relay.RELAY2 site="nyc" config="relay2.xml" relay_multicasts="true" />
  77.     <FORWARD_TO_COORD />
  78. </config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement