mirror of https://github.com/apache/lucene.git
SOLR-7141: RecoveryStrategy: Raise time that we wait for any updates from the leader before they saw the recovery state to have finished.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1668396 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
12188a93fa
commit
8edc462ec1
|
@ -272,6 +272,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-7285: ActionThrottle will not pause if getNanoTime first returns 0.
|
||||
(Mark Miller, Gregory Chanan)
|
||||
|
||||
* SOLR-7141: RecoveryStrategy: Raise time that we wait for any updates from the leader before
|
||||
they saw the recovery state to have finished. (Mark Miller)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
|
|
@ -66,6 +66,7 @@ import java.util.concurrent.ExecutionException;
|
|||
import java.util.concurrent.Future;
|
||||
|
||||
public class RecoveryStrategy extends Thread implements ClosableThread {
|
||||
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 MAX_RETRIES = 500;
|
||||
private static final int STARTING_RECOVERY_DELAY = 5000;
|
||||
|
||||
|
@ -368,9 +369,10 @@ public class RecoveryStrategy extends Thread implements ClosableThread {
|
|||
|
||||
// we wait a bit so that any updates on the leader
|
||||
// that started before they saw recovering state
|
||||
// are sure to have finished
|
||||
// are sure to have finished (see SOLR-7141 for
|
||||
// discussion around current value)
|
||||
try {
|
||||
Thread.sleep(2000);
|
||||
Thread.sleep(WAIT_FOR_UPDATES_WITH_STALE_STATE_PAUSE);
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue