Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-26932

Further improve index_retry.js, index_no_retry.js, and crashAfterStartingIndexBuild failpoint

    • Type: Icon: Task Task
    • Resolution: Done
    • Priority: Icon: Minor - P4 Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: Storage
    • Labels:
      None
    • Storage Execution

      1. Avoid letting the server continue running if RecoveryUnit::waitUntilDurable() return false.

      if (MONGO_FAIL_POINT(crashAfterStartingIndexBuild)) {
          log() << "Index build interrupted due to 'crashAfterStartingIndexBuild' failpoint. Exiting "
                   "after waiting for changes to become durable.";
          Locker::LockSnapshot lockInfo;
          _txn->lockState()->saveLockStateAndUnlock(&lockInfo);
          if (_txn->recoveryUnit()->waitUntilDurable()) {
              quickExit(EXIT_TEST);
          }
      }
      

      2. Inline the contents of the abortDuringIndexBuild() function and eliminate the unnecessary usage of startParallelShell() in index_retry.js and index_no_retry.js. The changes from SERVER-23510 made it so that creating the background index should synchronously crash the server, so the tests no longer need to use multiple clients.

            Assignee:
            backlog-server-execution [DO NOT USE] Backlog - Storage Execution Team
            Reporter:
            max.hirschhorn@mongodb.com Max Hirschhorn
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: