You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/09/06 14:10:08 UTC

svn commit: r573238 - in /incubator/servicemix/trunk: deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java distributions/apache-servicemix/src/main/release/conf/component.properties

Author: gnodet
Date: Thu Sep  6 05:10:06 2007
New Revision: 573238

URL: http://svn.apache.org/viewvc?rev=573238&view=rev
Log:
SM-1049: Raise the number of http requests that can be send concurrently by servicemix-http

Modified:
    incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
    incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/component.properties

Modified: incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java?rev=573238&r1=573237&r2=573238&view=diff
==============================================================================
--- incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java (original)
+++ incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java Thu Sep  6 05:10:06 2007
@@ -65,12 +65,12 @@
     /**
      * Maximum number of concurrent requests to the same host.
      */
-    private int maxConnectionsPerHost = 32;
+    private int maxConnectionsPerHost = 65536;
     
     /**
      * Maximum number of concurrent requests.
      */
-    private int maxTotalConnections = 256;
+    private int maxTotalConnections = 65536;
     
     /**
      * If true, use register jetty mbeans

Modified: incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/component.properties
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/component.properties?rev=573238&r1=573237&r2=573238&view=diff
==============================================================================
--- incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/component.properties (original)
+++ incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/conf/component.properties Thu Sep  6 05:10:06 2007
@@ -34,8 +34,8 @@
 servicemix-http.streamingEnabled=false
 servicemix-http.connectorMaxIdleTime=65000
 servicemix-http.jettyConnectorClassName=org.mortbay.jetty.nio.SelectChannelConnector
-servicemix-http.maxTotalConnections=256
+servicemix-http.maxTotalConnections=65536
 servicemix-http.jettyThreadPoolSize=255
 servicemix-http.keystoreManagerName=java\:comp/env/smx/KeystoreManager
 servicemix-http.consumerProcessorSuspendTime=70000
-servicemix-http.maxConnectionsPerHost=32
+servicemix-http.maxConnectionsPerHost=65536