Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-101922

Indices in MatchExpressions should be cached in a position-independent manner

    • Type: Icon: Improvement Improvement
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • None
    • Query Optimization
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      As a result of SERVER-97662, MatchExpression s in the classic plan cache have their index choices cached as positional values (the n th index in the index list), but this positional value can affect the QuerySolution 's hash because the position is not stable.

      We should instead represent index choices in a more stable manner to avoid otherwise-identical MatchExpression s from hashing to different values solely because the index position is different.

      For example: https://github.com/10gen/mongo/pull/33328/files#r1988069769

      index_x_1: {x: 1}
      index_y_1: {y: 1}
      query: find({x: 5, y:1})
      
      Cached plan:
      $and || Selected Index #1 pos 0 combine 1
      x $eq 5
      y $eq 1 || Selected Index #1 pos 0 combine 1
      
      Plan retrieved from cache:
      $and || Selected Index #2 pos 0 combine 1
      x $eq 5
      y $eq 1 || Selected Index #2 pos 0 combine 1
      

            Assignee:
            samuel.mercier@mongodb.com Sam Mercier
            Reporter:
            william.qian@mongodb.com William Qian
            Votes:
            0 Vote for this issue
            Watchers:
            8 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None