[Jboss-cvs] JBossAS SVN: r56866 - trunk/tomcat/src/resources

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 14 17:05:53 EDT 2006


Author: bstansberry at jboss.com
Date: 2006-09-14 17:05:52 -0400 (Thu, 14 Sep 2006)
New Revision: 56866

Modified:
   trunk/tomcat/src/resources/tc6-cluster-service.xml
Log:
[JBAS-3588] Use sys prop to config multiplexer stack
[JBAS-3592] Use sys prop to config ip_ttl

Modified: trunk/tomcat/src/resources/tc6-cluster-service.xml
===================================================================
--- trunk/tomcat/src/resources/tc6-cluster-service.xml	2006-09-14 20:34:00 UTC (rev 56865)
+++ trunk/tomcat/src/resources/tc6-cluster-service.xml	2006-09-14 21:05:52 UTC (rev 56866)
@@ -27,7 +27,7 @@
             elements out and uncomment the ClusterConfig attribute below. -->
         <depends>jgroups.mux:name=Multiplexer</depends>
         <attribute name="MultiplexerService">jgroups.mux:name=Multiplexer</attribute>
-        <attribute name="MultiplexerStack">fc-fast-minimalthreads</attribute>
+        <attribute name="MultiplexerStack">${jboss.multiplexer.stack:udp}</attribute>
         
         <!-- Name of cluster. Needs to be the same for all clusters, in order
              to find each other -->
@@ -61,7 +61,7 @@
 		     
         <attribute name="ClusterConfig">
             <config>
-                <UDP mcast_addr="${jboss.partition.udpGroup:230.1.2.7}" 
+                <UDP mcast_addr="${jgroups.udp.mcast_addr:230.1.2.7}" 
                      mcast_port="45578"
                      ucast_recv_buf_size="20000000"
                      ucast_send_buf_size="640000"
@@ -72,7 +72,7 @@
                      max_bundle_timeout="30" 
                      use_incoming_packet_handler="true" 
                      use_outgoing_packet_handler="false" 
-                     ip_ttl="2" 
+                     ip_ttl="${jgroups.udp.ip_ttl:2}" 
                      down_thread="false" up_thread="false"
                      enable_bundling="true"/>
                 <PING timeout="2000"
@@ -86,19 +86,19 @@
                         up_thread="false" down_thread="false"/>
                 <pbcast.NAKACK max_xmit_size="60000"
                                use_mcast_xmit="false" gc_lag="50" 
-                               retransmit_timeout="100,200,300,600,1200,2400,4800" 
+                               retransmit_timeout="300,600,1200,2400,4800" 
                                down_thread="false" up_thread="false"
                                discard_delivered_msgs="true"/>
                 <UNICAST timeout="300,600,1200,2400,3600" 
                          down_thread="false" up_thread="false"/>
                 <pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000" 
                                down_thread="false" up_thread="false"
-                               max_bytes="2100000"/>
+                               max_bytes="400000"/>
                 <pbcast.GMS print_local_addr="true" join_timeout="3000" 
                             down_thread="false" up_thread="false"
                             join_retry_timeout="2000" shun="true"/>
-                <FC max_credits="10000000" down_thread="false" up_thread="false"
-                    min_threshold="0.20"/>
+                <FC max_credits="2000000" down_thread="false" up_thread="false"
+                    min_threshold="0.10"/>
                 <FRAG2 frag_size="60000" down_thread="false" up_thread="false"/>
                 <pbcast.STATE_TRANSFER down_thread="false" up_thread="false"/>
             </config>




More information about the jboss-cvs-commits mailing list