You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2012/02/22 16:42:08 UTC

svn commit: r1292353 - /lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java

Author: yonik
Date: Wed Feb 22 15:42:07 2012
New Revision: 1292353

URL: http://svn.apache.org/viewvc?rev=1292353&view=rev
Log:
distrib search: up max connections per host

Modified:
    lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java

Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java?rev=1292353&r1=1292352&r2=1292353&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java (original)
+++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/handler/component/HttpShardHandlerFactory.java Wed Feb 22 15:42:07 2012
@@ -108,7 +108,7 @@ public class HttpShardHandlerFactory ext
         }
     }
     mgr = new MultiThreadedHttpConnectionManager();
-    mgr.getParams().setDefaultMaxConnectionsPerHost(20);
+    mgr.getParams().setDefaultMaxConnectionsPerHost(256);
     mgr.getParams().setMaxTotalConnections(10000);
     mgr.getParams().setConnectionTimeout(connectionTimeout);
     mgr.getParams().setSoTimeout(soTimeout);