mirror of https://github.com/apache/lucene.git
SOLR-9848: Lower solr.cloud.wait-for-updates-with-stale-state-pause back down from 7 seconds.
This commit is contained in:
parent
b28dc3fe34
commit
eb9e3cba8d
|
@ -232,6 +232,9 @@ Other Changes
|
|||
* SOLR-9842: UpdateRequestProcessors have no way to guarantee the closing of resources used for a request.
|
||||
(Mark Miller)
|
||||
|
||||
* SOLR-9848: Lower solr.cloud.wait-for-updates-with-stale-state-pause back down from 7 seconds.
|
||||
(Mark Miller)
|
||||
|
||||
================== 6.4.2 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
|
|
@ -70,7 +70,7 @@ public class RecoveryStrategy extends Thread implements Closeable {
|
|||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
|
||||
|
||||
private static final int WAIT_FOR_UPDATES_WITH_STALE_STATE_PAUSE = Integer.getInteger("solr.cloud.wait-for-updates-with-stale-state-pause", 7000);
|
||||
private static final int WAIT_FOR_UPDATES_WITH_STALE_STATE_PAUSE = Integer.getInteger("solr.cloud.wait-for-updates-with-stale-state-pause", 2500);
|
||||
private static final int MAX_RETRIES = 500;
|
||||
private static final int STARTING_RECOVERY_DELAY = 5000;
|
||||
|
||||
|
|
Loading…
Reference in New Issue