mirror of https://github.com/apache/lucene.git
LUCENE-5263: if merge hits exc when releasing merged reader then drop changes and remove it from the pool, since the merge will be aborted
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1531836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eedb448b41
commit
e4ee6188ef
|
@ -3357,13 +3357,22 @@ public class IndexWriter implements Closeable, TwoPhaseCommit{
|
|||
assert merge.info.info.getDocCount() != 0 || keepFullyDeletedSegments || dropSegment;
|
||||
|
||||
if (mergedDeletes != null) {
|
||||
if (dropSegment) {
|
||||
mergedDeletes.dropChanges();
|
||||
}
|
||||
// Pass false for assertInfoLive because the merged
|
||||
// segment is not yet live (only below do we commit it
|
||||
// to the segmentInfos):
|
||||
readerPool.release(mergedDeletes, false);
|
||||
boolean success = false;
|
||||
try {
|
||||
if (dropSegment) {
|
||||
mergedDeletes.dropChanges();
|
||||
}
|
||||
readerPool.release(mergedDeletes, false);
|
||||
success = true;
|
||||
} finally {
|
||||
if (!success) {
|
||||
mergedDeletes.dropChanges();
|
||||
readerPool.drop(merge.info);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Must do this after readerPool.release, in case an
|
||||
|
|
Loading…
Reference in New Issue