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

Bulk operations for LongValues and Sorted[Set]DocValues

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 7.2.1
    • None
    • None
    • None
    • Patch Available

    Description

      One-by-one DocValues iteration by advanceExact and nextOrd/ordValue is really slow for bulk operations like facetting. Reading and unpacking integers in blocks is substantially faster but DocValues for now can be queried only for single document.

      To apply document-based bulk processing DocIdSetIterator matches have to be splitted to sequential docID runs and remapped to underlying LongValues positions.
      After this transformation relatively large linear scans can be performed over packed integers.

       

      To do this two new interfaces

      1. LongValuesCollector (collectValue(long index, long value)).
      2. OrdStatsCollector (collectOrd(long ord), collectMissing(int count)).

      and three new functions are introduced

      1. LongValues.forRange(long begin, long end, LongValuesCollector collector)
      2. SortedDocValues.forEach(DocIdSetIterator disi, OrdStatsConsumer collector)
      3. SortedSetDocValues.forEach(DocIdSetIterator disi, OrdStatsConsumer collector)

      with reference implementations.

      Optimized versions of these functions are provided for:
      1. DirectReader for non-32/64 bits per value cases (using PackedInts.Decoder).
      2. Lucene70DocValuesProducer getSorted and getSortedSet (both sparse and dense).

       

      Measured Solr facetting performance boost is up to 2 - 2.5x on real index.
      Patch for Solr DocValuesFacets is also provided as separate file.

       

      Implementation notes:

      • OrdStatsCollector does not accept document id because it will ruin performance for SortedSetDocValues due to excessive position lookups.
      • This patch is fully compatible with Lucene 7.0 DocValues format.

      Attachments

        1. graph.png
          1.16 MB
          Nikolay Khitrin
        2. LUCENE-8178.patch
          23 kB
          Nikolay Khitrin
        3. LUCENE-8178-for-solr.patch
          5 kB
          Nikolay Khitrin

        Activity

          People

            Unassigned Unassigned
            khitrin Nikolay Khitrin
            Votes:
            2 Vote for this issue
            Watchers:
            8 Start watching this issue

            Dates

              Created:
              Updated: