[02:16:25] <seiyria> hey all, I'm not sure what's happening with my project but for some reason one of my mongo collections will not insert more than 64 items
[02:16:32] <seiyria> it just rejects it after that
[02:17:34] <seiyria> I should add that I'm inserting from node, not from the mongo shell - at that point, it seems to work fine.
[02:29:03] <seiyria> huh, nevermind, I was trying to insert multiple of the same id, don't mind me
[04:58:30] <user123321> Is it possible to know values like MTTF, MTBF, MTTR etc. for Mongo DB? Are there already determined values so that I don't have to calculate?
[06:39:06] <monsterr> If I have the data on http://docs.mongodb.org/manual/reference/operator/aggregation/first/#grp._S_first and I want to know the newest _id for each item, how would I do that?
[06:41:05] <monsterr> If I add $_id to the "_id" section, it no longer groups by item.
[09:28:44] <Chepra> How do you do an repairdatabase on an replica set slave?
[12:24:15] <fpghost84> Hi if I have documents like http://paste.ubuntu.com/8545488/ in collection, is it possible to grab only the documents for which the set of 'marketName' (usually multiple although just one in my e.g.) have a non-zero intersection with some set of names?
[12:25:25] <fpghost84> For example maybe my reference set of names is ('Match Odds', 'Correct Score',) and I want to grab all documents which have then at least either a Match Odd or Correct Score market
[12:53:19] <emx> hi. i want to sort the aggregated result by year, month and then day with this parameters: http://pastie.org/9641800
[12:54:22] <emx> what i get: the result is sorted by day only.
[23:52:49] <Synt4x`> Ok guys, have one thing troubling me :S. I have a mongoDB with a bunch of documents each containing Date, and Person. Person can be repeating (multiple entries with the same date). I want to go through date by date, and find find all of the unique people for each date (and put them into their own list to work with)
[23:53:36] <Synt4x`> I can do .distinct('date') to get the dates, but then it's just a list of dates, so I tried to do .find('date':date) and then do .distinct('person') on that, but it didn't work