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

Use std::sort instead of stable_sort in GroupProcessor

    • Type: Icon: Task Task
    • Resolution: Fixed
    • Priority: Icon: Major - P3 Major - P3
    • 8.2.0-rc0
    • Affects Version/s: None
    • Component/s: None
    • None
    • Query Execution
    • Fully Compatible
    • QE 2025-04-14
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      Historically, in Classic Engine $group we use std::stable_sort: 

      https://github.com/mongodb/mongo/blob/0a68308f0d39a928ed551f285ba72ca560c38576/src/mongo/db/pipeline/group_processor.cpp#L235

      As stable_sort imposes additional restrictions, it performs slightly worse than just std::sort.

      And in this case we know that all keys are unique (as they are keys from a map).

      So it makes no sense to use stable sort.

            Assignee:
            ivan.fefer@mongodb.com Ivan Fefer
            Reporter:
            ivan.fefer@mongodb.com Ivan Fefer
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              None
              None
              None
              None