Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-1552

IndexWriter.addIndexes(IndexReader[] readers) doesn't correctly handle exception success flag.

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.4
    • 2.4.1, 2.9
    • None
    • None
    • Java

    • New

    Description

      After this bit of code in addIndexes(IndexReader[] readers)

      try

      { flush(true, false, true); optimize(); // start with zero or 1 seg success = true; }

      finally

      { // Take care to release the write lock if we hit an // exception before starting the transaction if (!success) releaseWrite(); }

      The success flag should be reset to "false" because it's used again in another try/catch/finally block.

      TestIndexWriter.testAddIndexOnDiskFull() sometimes will hit this bug; but it's infrequent.

      Attachments

        Activity

          People

            mikemccand Michael McCandless
            sgarland Scott Garland
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: