[jboss-cvs] JBoss Messaging SVN: r6424 - trunk/src/config.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 14 12:32:37 EDT 2009


Author: jmesnil
Date: 2009-04-14 12:32:37 -0400 (Tue, 14 Apr 2009)
New Revision: 6424

Modified:
   trunk/src/config/jbm-jms.xml
Log:
updated configuration after schema change in r6419

Modified: trunk/src/config/jbm-jms.xml
===================================================================
--- trunk/src/config/jbm-jms.xml	2009-04-14 16:28:56 UTC (rev 6423)
+++ trunk/src/config/jbm-jms.xml	2009-04-14 16:32:37 UTC (rev 6424)
@@ -50,22 +50,22 @@
       <entry name="java:/connectionfactories/acme/connection_factory"/>
       <ping-period>5000</ping-period>
       <call-timeout>30000</call-timeout>
+      <!-- This is the window size in bytes to use when using consumer window based flow control -->
+      <consumer-window-size>1048576</consumer-window-size>
+      <!-- This is the maximum producer send rate that will be applied when using rate based consumer flow control -->
+      <consumer-max-rate>5000</consumer-max-rate>
+      <!-- This is the send window size in bytes -->
+      <producer-window-size>1048576</producer-window-size>
+      <!-- This is the maximum producer send rate that will be applied when using rate based producer flow control -->
+      <producer-max-rate>100</producer-max-rate>
+      <!-- When using this ConnectionFactory, messages beyond this limit are considered largeMessages and will be sent using smaller packets -->
+      <min-large-message-size>10240</min-large-message-size>
       <!-- You can specify the default Client ID to use for connections created using this factory -->
       <client-id>MyClientID</client-id>
       <!-- The batch size in bytes to use when using the DUPS_OK_ACKNOWLEDGE acknowledgement mode -->
       <dups-ok-batch-size>1048576</dups-ok-batch-size>
       <!-- The batch size in bytes to use when using transactional sessions -->
       <transaction-batch-size>1048576</transaction-batch-size>
-      <!-- This is the send window size in bytes -->
-      <producer-window-size>1048576</producer-window-size>
-      <!-- This is the maximum producer send rate that will be applied when using rate based producer flow control -->
-      <producer-max-rate>100</producer-max-rate>
-      <!-- When using this ConnectionFactory, messages beyond this limit are considered largeMessages and will be sent using smaller packets -->
-      <big-message-size>10240</big-message-size>
-      <!-- This is the window size in bytes to use when using consumer window based flow control -->
-      <consumer-window-size>1048576</consumer-window-size>
-      <!-- This is the maximum producer send rate that will be applied when using rate based consumer flow control -->
-      <consumer-max-rate>5000</consumer-max-rate>
       <!--Whether or not we use a blocking call when acknowledging a message-->
       <block-on-acknowledge>false</block-on-acknowledge>
       <!--Whether we send non persistent messages synchronously-->




More information about the jboss-cvs-commits mailing list