SOLR-12670: RecoveryStrategy logs wrong wait time when retrying recovery

This commit is contained in:
Shalin Shekhar Mangar 2018-08-16 15:00:49 +05:30
parent 100b1511dd
commit 887055d892
2 changed files with 7 additions and 3 deletions

View File

@ -239,6 +239,8 @@ Bug Fixes
* SOLR-12649: CloudSolrClient retries requests unnecessarily exception from server (noble, shalin)
* SOLR-12670: RecoveryStrategy logs wrong wait time when retrying recovery. (shalin)
Optimizations
----------------------

View File

@ -24,6 +24,7 @@ import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.lucene.search.MatchAllDocsQuery;
@ -425,8 +426,9 @@ public class RecoveryStrategy implements Runnable, Closeable {
// If we're at attempt >= 4, there's no point computing pow(2, retries) because the result
// will always be the minimum of the two (12). Since we sleep at 5 seconds sub-intervals in
// order to check if we were closed, 12 is chosen as the maximum loopCount (5s * 12 = 1m).
double loopCount = retries < 4 ? Math.min(Math.pow(2, retries), 12) : 12;
LOG.info("Wait [{}] seconds before trying to recover again (attempt={})", loopCount, retries);
int loopCount = retries < 4 ? (int) Math.min(Math.pow(2, retries), 12) : 12;
LOG.info("Wait [{}] seconds before trying to recover again (attempt={})",
TimeUnit.MILLISECONDS.toSeconds(loopCount * startingRecoveryDelayMilliSeconds), retries);
for (int i = 0; i < loopCount; i++) {
if (isClosed()) {
LOG.info("Recovery for core {} has been closed", core.getName());