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

Include merge sort in sharded aggregation explain output

    • Type: Icon: Improvement Improvement
    • Resolution: Fixed
    • Priority: Icon: Major - P3 Major - P3
    • 5.3.0
    • Affects Version/s: None
    • Component/s: None
    • Labels:
      None
    • Minor Change
    • 135

      At some point before 4.2 we stopped including the merge sort in the explain output - I believe because the merge sort started happening within the $mergeCursors, which is not created nor displayed in explain output.

      We should somehow enhance the explain output to include the merge sort so that users don't mistakenly conclude that the merged output is not sorted.

       
      4.0:

      splitPipeline: {
        shardsPart: [
          {
            '$match': { mykey: { '$in': [ 0, 1, 3, 7 ] } }
          },
          { '$sort': { sortKey: { favColour: 1 }, limit: 5 } }
        ],
        mergerPart: [
          {
            '$sort': { sortKey: { favColour: 1 }, mergePresorted: true, limit: 5 }
          }
        ]
      }
      

      4.2/4.4:

       
      splitPipeline: {
        shardsPart: [
          {
            '$match': { mykey: { '$in': [ 0, 1, 3, 7 ] } }
          },
          { '$sort': { sortKey: { favColour: 1 }, limit: 5 } }
        ],
        mergerPart: [ { '$limit': 5 } ]
      }
      

       

            Assignee:
            davis.haupt@mongodb.com Davis Haupt (Inactive)
            Reporter:
            charlie.swanson@mongodb.com Charlie Swanson
            Votes:
            2 Vote for this issue
            Watchers:
            13 Start watching this issue

              Created:
              Updated:
              Resolved: