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

OrdinalMap's mapping from global ords to segment ords is sometimes wasteful

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 4.10, 6.0
    • None
    • None
    • New

    Description

      Robert found a case when the ordinal map can be quite wasteful in terms of memory usage: in order to be able to resolve values given a global ordinals, it stores two things:

      • an identifier of the segment where the value is
      • the difference between the ordinal on the segment and the global ordinal

      The issue is that OrdinalMap currently picks any of the segments that contain the value but we can do better: we can pick the first segment that has the value. This will help for two reasons:

      • it will potentially require fewer bits per value to store the segment ids if NRT segments don't introduce new values
      • if all values happen to appear in the first segment, then the map from global ords to deltas only stores zeros.

      I just tested on an index where all values are in the first segment and this helped reduce memory usage of the ordinal map by 4x (from 3.5MB to 800KB).

      Attachments

        1. LUCENE-5780.patch
          2 kB
          Adrien Grand
        2. LUCENE-5780.patch
          2 kB
          Adrien Grand

        Activity

          People

            jpountz Adrien Grand
            jpountz Adrien Grand
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: