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

IndexReader.open(String|File) may incorrectly throw AlreadyClosedException

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.1, 2.2, 2.3, 2.3.1, 2.3.2, 2.4
    • 2.4.1, 2.9
    • core/index
    • None
    • New

    Description

      Spinoff from here:

      http://www.nabble.com/Runtime-exception-when-creating-IndexSearcher-to20226279.html

      If you open an IndexSearcher/Reader, passing in String or File, then
      closeDirectory is set to true in the reader.

      If the index has a single segment, then SegmentReader.get is used to
      open the index. If an IOException is hit in there, the SegmentReader
      closes itself and then closes the directory since closeDirectory is
      true.

      The problem is, the retry logic in SegmentInfos (to look for another
      segments_N to try) kicks in and hits an AlreadyClosedException,
      masking the original root cause.

      Workaround is to separately get the Directory using
      FSDirectory.getDirectory, and then instantiate IndexSearcher/Reader
      from that.

      This manifests as masking the root cause of a corrupted single-segment
      index with a confusing AlreadyClosedException. You could also hit
      the false exception if the writer was in the process of committing
      (ie, a retry was really needed) or if there is some transient IO
      problem opening the index (eg too many open files).

      Attachments

        1. LUCENE-1430.patch
          4 kB
          Michael McCandless

        Activity

          People

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

            Dates

              Created:
              Updated:
              Resolved: