Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-10525

Stacked recovery requests do no cancel an in progress recovery first.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 7.3, 8.0
    • SolrCloud
    • None

    Description

      https://github.com/apache/lucene-solr/blob/master/solr/core/src/java/org/apache/solr/update/DefaultSolrCoreState.java#L300-L310

      Two issues with this code:

                boolean locked = recoveryLock.tryLock();
                try {
                  if (!locked) {
                    if (recoveryWaiting.get() > 0) { // line 1
                      return;
                    }
                    recoveryWaiting.incrementAndGet(); // line 2
                  } else {
                    recoveryWaiting.incrementAndGet();
                    cancelRecovery(); // line 3
      }
      

      The cancelRecovery on line 3 call will only hit when there are no recoveries to actually cancel (since we got the lock that means there are no recoveries in progress). Instead it should be moved either to the either branch of the if, or outside after the if since we know we will be running a recovery at that point.

      This code doesn't always prevent multiple requests from stacking. If there is a recovery running, but no recoveries currently waiting, multiple requests can check the count at line 1 before any of them will increment the count at line 2 and thus all of them will hit the increment.

      I don't have specific tests for this, but it's causing failures for me on my SOLR-9555 work in progress.

      Attachments

        1. SOLR-10525.patch
          4 kB
          Mike Drob
        2. SOLR-10525.patch
          2 kB
          Mike Drob

        Issue Links

          Activity

            People

              caomanhdat Cao Manh Dat
              mdrob Mike Drob
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: