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

Unnecessary waiting during failover in case of failed core creation

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 7.0
    • None
    • None
    • None

    Description

      Background failover thread checks for bad replicas. In case one is found it tries to create it on another node. Then it waits for the new replica to show up in the cluster state. It waits even if the core creation (initiated by itself) fails.

      This situation does not occur on the happy path of the failover cases because the new node was marked as alive. But in case the cluster is in an instable state, or user is restarting the new node, or overseer is overloaded this extra wait will result in holding up this failover thread.

      Proposed solution may be

      1. wait for the result of the core creation
      2. only if previous step is successful proceed to wait for cluster state change

      In code:

      try {
        Future<Boolean> future = updateExecutor.submit(() -> createSolrCore(collection, createUrl, dataDir, ulogDir, coreNodeName, coreName, shardId));
        future.get(30000L, TimeUnit.MILLISECONDS);
      } catch (InterruptedException | ExecutionException | TimeoutException e) {
        log.error("Error creating core", e);
        return false;
      } finally {
        MDC.remove("OverseerAutoReplicaFailoverThread.createUrl");
      }
      

      In such case we could consider moving core creation into the failover thread from the updateExecutor.

      I can post a patch with these changes if the solution seems appropriate.

      Attachments

        Activity

          People

            Unassigned Unassigned
            mihaly.toth Mihaly Toth
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated: