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

Combining $comment and .count() degrades performance

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major - P3
    • Resolution: Done
    • None
    • 3.3.2
    • Querying
    • Major Change
    • ALL
    • Query 10 (02/22/16)

    Description

      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
      

      Attachments

        Issue Links

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved: