Author: gnodet
Date: Thu Sep 6 05:11:16 2007
New Revision: 573240
URL: http://svn.apache.org/viewvc?rev=573240&view=rev
Log:
SM-1049: Raise the number of http requests that can be send concurrently by
servicemix-http
Modified:
incubator/servicemix/branches/servicemix-3.1/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
incubator/servicemix/branches/servicemix-3.1/distributions/apache-servicemix/src/main/release/conf/component.properties
Modified:
incubator/servicemix/branches/servicemix-3.1/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
URL:
http://svn.apache.org/viewvc/incubator/servicemix/branches/servicemix-3.1/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java?rev=573240&r1=573239&r2=573240&view=diff
==============================================================================
---
incubator/servicemix/branches/servicemix-3.1/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
(original)
+++
incubator/servicemix/branches/servicemix-3.1/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/HttpConfiguration.java
Thu Sep 6 05:11:16 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/branches/servicemix-3.1/distributions/apache-servicemix/src/main/release/conf/component.properties
URL:
http://svn.apache.org/viewvc/incubator/servicemix/branches/servicemix-3.1/distributions/apache-servicemix/src/main/release/conf/component.properties?rev=573240&r1=573239&r2=573240&view=diff
==============================================================================
---
incubator/servicemix/branches/servicemix-3.1/distributions/apache-servicemix/src/main/release/conf/component.properties
(original)
+++
incubator/servicemix/branches/servicemix-3.1/distributions/apache-servicemix/src/main/release/conf/component.properties
Thu Sep 6 05:11:16 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