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

Combining $comment and .count() degrades performance

    • Type: Icon: Bug Bug
    • Resolution: Done
    • Priority: Icon: Major - P3 Major - P3
    • 3.3.2
    • Affects Version/s: None
    • Component/s: Querying
    • Labels:
    • Major Change
    • ALL
    • Query 10 (02/22/16)

      When passing a $comment in a query count() doesn't use an index.

      Testcase:

      > for (var i=0; i < 1000000; i++) db.test.insert({a:i})
      > db.test.count()
      1000001
      > db.test.count({$comment:"A"})
      1000001
      > var start = new ISODate(); db.test.count(); new ISODate() - start
      0
      > var start = new ISODate(); db.test.count({$comment:"A"}); new ISODate() - start
      155
      

            Assignee:
            charlie.swanson@mongodb.com Charlie Swanson
            Reporter:
            alonho Alon Horev
            Votes:
            0 Vote for this issue
            Watchers:
            12 Start watching this issue

              Created:
              Updated:
              Resolved: