mirror of https://github.com/apache/lucene.git
SOLR-5565: Raise default ZooKeeper session timeout to 30 seconds from 15 seconds.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1552700 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
136a2c7190
commit
5f17bb8a01
|
@ -262,6 +262,9 @@ Other Changes
|
|||
* SOLR-5555: LBHttpSolrServer and CloudSolrServer constructors don't need to
|
||||
declare MalformedURLExceptions (Sushil Bajracharya, Alan Woodward)
|
||||
|
||||
* SOLR-5565: Raise default ZooKeeper session timeout to 30 seconds from 15
|
||||
seconds. (Mark Miller)
|
||||
|
||||
================== 4.6.0 ==================
|
||||
|
||||
Versions of Major Components
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<str name="host">${host:}</str>
|
||||
<int name="hostPort">${jetty.port:8983}</int>
|
||||
<str name="hostContext">${hostContext:solr}</str>
|
||||
<int name="zkClientTimeout">${zkClientTimeout:15000}</int>
|
||||
<int name="zkClientTimeout">${zkClientTimeout:30000}</int>
|
||||
<bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>
|
||||
</solrcloud>
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<str name="host">${host:}</str>
|
||||
<int name="hostPort">${jetty.port:8983}</int>
|
||||
<str name="hostContext">${hostContext:solr}</str>
|
||||
<int name="zkClientTimeout">${zkClientTimeout:15000}</int>
|
||||
<int name="zkClientTimeout">${zkClientTimeout:30000}</int>
|
||||
<bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>
|
||||
</solrcloud>
|
||||
|
||||
|
|
Loading…
Reference in New Issue