[01:00:52] <owen1> i signin to mongodb class and watching the videos, but would like download some of them for offline view. any idea how? https://www.youtube.com/watch?feature=player_embedded&v=MWH-_nJgebw
[01:01:35] <owen1> this library didn't help, btw - http://rg3.github.com/youtube-dl/
[01:01:51] <owen1> also tried with a chrome extension but failed.
[06:59:49] <bmcgee> hey guys. anyone here use Subset with scala for working with mongodb?
[11:36:00] <jeremy-> I want to log a date in mongodb which is the nearest 'day' (date with hours/mins 00:00)
[11:36:27] <jeremy-> I want to use this so that I can compare scraped data input with greater than less than nearest date input
[11:36:39] <jeremy-> Ive noticed if i use python to store datetime it automatically converts to bson
[11:37:16] <jeremy-> however, when I try and input date.today() it gives me the bson error "cannot convert value of <type 'datetime.date'> to bson
[11:38:02] <jeremy-> Is there anyway to make mongodb just round date.today() to 00:00 hours/mins and interpret it as datetime (I investigated rounding python dates to the nearest day but it was getting frustrating)
[12:49:05] <sawyer__> is it possible to have an insert() which doesn't write to the database? possibly to the journaling which doesn't get updated, or a cache?
[12:51:52] <sawyer__> i have an collection->insert call. then i call the collection->find and i get the previous object. as if the last insert() didn't update the value.
[12:52:14] <sawyer__> does insert() not update() existing values? maybe that's the reason?
[13:47:09] <Dededede4> why I get this error « too much key data for sort() with no index. add an index or specify a smaller limit » ?
[13:48:21] <Dededede4> It appears to me even with a limit of 40,000 objects
[14:59:27] <durre> I have products that can belong to many categories. now I wish to query all the products that belong to a specific category. this is my failed attempt: db.products.find({categories: {$in: [ObjectId('50dedbf70364d1bdfddcedfc')]}})
[17:21:47] <zastern> The MongoDB docs on replica sets frequently mention that we should keep some secondary members of the set outside the main datacenter for backup purposes. This makes sense to me, but I wonder - does MongoDB have a way of handling this, or will I need to set up a VPN or similar?
[17:23:54] <colun> I suppose a port forwarding by ssh http://alexanderwong.me/post/26960965342/settings-up-mongodb-on-ec2-w-replica-sets-in-a-sharded or vpn ipsec
[18:23:16] <zastern> colun: mm that could work. vpn ipsec will be kind of annoying to implement on rackspace
[18:24:18] <colun> zastern: aucune idée. I use only my servers
[19:53:54] <jtomasrl> is there a way to search for all nested attributes with a certain value from all documents inside a collection?
[20:22:59] <skot> No, not really. You can write a $where javascript recursive check, but that is not very efficient.
[21:01:15] <adamdicarlo> hey, "Try it Out" on mongodb.org is broken - 404 on try/js/lib/query.js... so all db.foo.find() calls give empty result
[22:30:21] <adamdicarlo> mongodb.org's interactive tutorial is broken.
[22:30:43] <adamdicarlo> /try/js/lib/query.js is missing, so no db.foo.find() calls can find anything.
[22:31:13] <adamdicarlo> not sure where else to report this than here.