summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/indexbg_killop_primary_after_init.js
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-48290 update replica set in indexbg_killop_primary_after_init.js to ↵Benety Goh2020-05-211-7/+0
| | | | use single node config
* SERVER-38961 remove IndexBuildTest.supportsTwoPhaseIndexBuild() references ↵Benety Goh2020-05-071-25/+16
| | | | from noPassthrough tests
* SERVER-47635 remove index build from config.system.indexBuilds after ↵Benety Goh2020-05-061-1/+2
| | | | completion (commit/abort)
* SERVER-47635 add tests to check config.system.indexBuilds after completing ↵Benety Goh2020-05-061-0/+27
| | | | index builds
* SERVER-47325 indexbg_killop_primary_after_init.js should only let the index ↵Louis Williams2020-04-241-1/+2
| | | | builder continue once the abort has been confirmed
* SERVER-46560 Make abort index build deterministicLouis Williams2020-04-101-4/+1
| | | | | | | | | | | | This redesigns user index build abort to have the following behavior: - Take a collection X lock to stop the index build from making progress - If we are no longer primary, return an error - Check whether we can abort the index build (i.e. it is not already committing or aborting) - Delete the index catalog entry and write the abortIndexBuild oplog entry in a WUOW - Interrupt the index builder thread - Wait for the thread to exit - Release locks
* SERVER-45001 Enable commit quorum for two phase index builds by default.Suganthi Mani2020-03-031-1/+4
|
* SERVER-46235 Re-enable disabled testsMark Benvenuto2020-02-191-2/+1
|
* SERVER-46026 Fix tests reliant on specific log linesMark Benvenuto2020-02-181-1/+2
|
* SERVER-44609 Replicate startIndexBuild oplog entry in the same thread as the ↵Louis Williams2019-12-031-5/+11
| | | | | | | | index build Instead of initializing and replicating the startIndexBuild oplog entry on the caller thread, this moves that logic into the builder thread. This change removes the need for a mutex which previously made that operation atomic.
* SERVER-43867 Move check_log.js inside src/mongo/shell/Vesselina Ratcheva2019-11-271-1/+0
|
* SERVER-43415 abortIndexBuild should not abort secondary oplog applicationBenety Goh2019-09-281-4/+1
|
* SERVER-43301 Enable no_passthrough suite for two-phase index buildsLouis Williams2019-09-261-1/+4
|
* SERVER-42848 remove server parameter ↵Benety Goh2019-09-111-11/+0
| | | | | | | enableIndexBuildsCoordinatorForCreateIndexesCommand This server parameter supports using the IndexBuildsCoordinator for index creation on the primary and has been redundant since commit e831f816ab68abf59d7b403296a3d60e35b1c19d.
* SERVER-42773 Replace uses of the assert.writeOK() Javascript assertion with ↵James Wahlin2019-08-141-1/+1
| | | | assert.commandWorked()
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-57/+54
|
* SERVER-41870 add js test for interrupting index build before ↵Benety Goh2019-07-121-0/+80
IndexBuildsCoordinatorMongod scans collection