SOLR-8533: Raise default maxUpdateConnections and maxUpdateConnectionsPerHost to 100k each.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1724030 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2016-01-11 14:07:32 +00:00
parent 8a7a142efb
commit 4fe47d1934
2 changed files with 6 additions and 3 deletions

View File

@ -353,7 +353,10 @@ Bug Fixes
HttpSolrCall#remoteQuery should not close streams. (Mark Miller)
* SOLR-8450: Our HttpClient retry policy is too permissive. (Mark Miller, shalin)
* SOLR-8533: Raise default maxUpdateConnections and maxUpdateConnectionsPerHost to 100k each.
(Mark Miller)
Other Changes
----------------------

View File

@ -21,8 +21,8 @@ public class UpdateShardHandlerConfig {
public static final int DEFAULT_DISTRIBUPDATECONNTIMEOUT = 60000;
public static final int DEFAULT_DISTRIBUPDATESOTIMEOUT = 600000;
public static final int DEFAULT_MAXUPDATECONNECTIONS = 10000;
public static final int DEFAULT_MAXUPDATECONNECTIONSPERHOST = 100;
public static final int DEFAULT_MAXUPDATECONNECTIONS = 100000;
public static final int DEFAULT_MAXUPDATECONNECTIONSPERHOST = 100000;
public static final UpdateShardHandlerConfig DEFAULT
= new UpdateShardHandlerConfig(DEFAULT_MAXUPDATECONNECTIONS, DEFAULT_MAXUPDATECONNECTIONSPERHOST,