mirror of https://github.com/apache/lucene.git
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:
parent
8a7a142efb
commit
4fe47d1934
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue