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

LogMergePolicy should use the number of deleted docs when deciding which segments to merge

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 2.9
    • core/index
    • None
    • New

    Description

      I found that IndexWriter.optimize(int) method does not pick up large segments with a lot of deletes even when most of the docs are deleted. And the existence of such segments affected the query performance significantly.

      I created an index with 1 million docs, then went over all docs and updated a few thousand at a time. I ran optimize(20) occasionally. What saw were large segments with most of docs deleted. Although these segments did not have valid docs they remained in the directory for a very long time until more segments with comparable or bigger sizes were created.

      This is because LogMergePolicy.findMergeForOptimize uses the size of segments but does not take the number of deleted documents into consideration when it decides which segments to merge. So, a simple fix is to use the delete count to calibrate the segment size. I can create a patch for this.

      Attachments

        1. LUCENE-1634.patch
          2 kB
          Yasuhiro Matsuda
        2. LUCENE-1634.patch
          4 kB
          Yasuhiro Matsuda

        Activity

          People

            mikemccand Michael McCandless
            ymatsuda Yasuhiro Matsuda
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: