Skip to content

Commit

Permalink
LUCENE-9662: CheckIndex should be concurrent - parallelizing index ch…
Browse files Browse the repository at this point in the history
…eck across segments (#128)
  • Loading branch information
zacharymorn authored Sep 1, 2021
1 parent 9c7f0d4 commit 424192e
Show file tree
Hide file tree
Showing 10 changed files with 830 additions and 373 deletions.
3 changes: 3 additions & 0 deletions lucene/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ Improvements
* LUCENE-10019: Align file starts in CFS files to have proper alignment (8 bytes)
(Uwe Schinder)

* LUCENE-9662: Make CheckIndex concurrent by parallelizing index check across segments.
(Zach Chen, Mike McCandless, Dawid Weiss, Robert Muir)

Bug fixes

* LUCENE-9686: Fix read past EOF handling in DirectIODirectory. (Zach Chen,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testCheckOldIndex() throws IOException {
dir.setCheckIndexOnClose(false);

// ... because we check ourselves here:
TestUtil.checkIndex(dir, false, true, null);
TestUtil.checkIndex(dir, false, true, true, null);
dir.close();
}
}
Loading

0 comments on commit 424192e

Please sign in to comment.