Advertisement
Guest User

Yann Sionneau

a guest
Jan 10th, 2011
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.42 KB | None | 0 0
  1. <config xmlns="urn:org:jgroups"
  2.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.        xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/JGroups-2.8.xsd">
  4.     <UDP
  5.         mcast_port="${jgroups.udp.mcast_port:45588}"
  6.         ip_mcast="false"
  7.         tos="8"
  8.         ucast_recv_buf_size="20K"
  9.         ucast_send_buf_size="20K"
  10.         mcast_recv_buf_size="20K"
  11.         mcast_send_buf_size="20K"
  12.         loopback="true"
  13.         discard_incompatible_packets="true"
  14.         max_bundle_size="64K"
  15.         max_bundle_timeout="30"
  16.         ip_ttl="${jgroups.udp.ip_ttl:3}"
  17.         enable_bundling="true"
  18.         enable_diagnostics="false"
  19.         thread_naming_pattern="cl"
  20.  
  21.         timer_type="old"
  22.         timer.min_threads="2"
  23.         timer.max_threads="2"
  24.         timer.keep_alive_time="3000"
  25.         timer.queue_max_size="500"
  26.  
  27.         thread_pool.enabled="true"
  28.         thread_pool.min_threads="2"
  29.         thread_pool.max_threads="2"
  30.         thread_pool.keep_alive_time="5000"
  31.         thread_pool.queue_enabled="true"
  32.         thread_pool.queue_max_size="10000"
  33.         thread_pool.rejection_policy="discard"
  34.  
  35.         oob_thread_pool.enabled="true"
  36.         oob_thread_pool.min_threads="2"
  37.         oob_thread_pool.max_threads="2"
  38.         oob_thread_pool.keep_alive_time="5000"
  39.         oob_thread_pool.queue_enabled="false"
  40.         oob_thread_pool.queue_max_size="100"
  41.         oob_thread_pool.rejection_policy="Run"/>
  42.  
  43.     <BPING timeout="3000"
  44.             num_ping_requests="3"
  45.            num_initial_members="2"/>
  46.     <MERGE2 max_interval="15000"
  47.            min_interval="10000"/>
  48.     <FD_SOCK/>
  49.     <FD_ALL/>
  50.     <VERIFY_SUSPECT timeout="1500"  />
  51.     <BARRIER />
  52.     <pbcast.NAKACK use_stats_for_retransmission="false"
  53.                   exponential_backoff="0"
  54.                   use_mcast_xmit="false" gc_lag="0"
  55.                   retransmit_timeout="300,600,1200"
  56.                   discard_delivered_msgs="true"/>
  57.     <UNICAST timeout="300,600,1200"/>
  58.     <pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
  59.                   max_bytes="4M"/>
  60.     <pbcast.GMS print_local_addr="true" join_timeout="3000"
  61.                view_bundling="true"/>
  62.     <UFC max_credits="2M"
  63.         min_threshold="0.4"/>
  64.     <MFC max_credits="2M"
  65.         min_threshold="0.4"/>
  66.     <FRAG2 frag_size="60K"  />
  67.     <!--pbcast.STREAMING_STATE_TRANSFER /-->
  68.     <pbcast.STATE_TRANSFER  />
  69.     <!-- pbcast.FLUSH  /-->
  70. </config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement