Hello,
I was upgrading to mongo 2.2.1 on a system, and for some of the databases I
get a weird error analyzing the profile.
db.system.profile.find({ millis : { $gt : 1000 } })
This gives out an error sometimes:
uncaught exception: error: { "$err" : "BSONElement: bad type 115", "code" :
10320 }
Its consistent for certain databases.
Weird.
Is this limited to mongo 2.2.1?
I was wondering if I need to clean out the profiling after the upgrade.
Also, this works fine:
db.system.profile.find()
Its just when I search by millis does it go bad.
Mark