[04:44:01] <SaintMoriarty> I have data like so http://pastebin.com/6Sw6ZLhc, and I want to aggregate it and create a output that maybe has a month and year
[04:45:10] <SaintMoriarty> I am using project to get what I have in pastbin now
[07:27:31] <KekSi> 'morning - i'm having trouble upgrading -- i have a somewhat older mongodump (from a 2.4 version) and couldn't restore it to 3.0 so i restored it to a 2.4 instance
[07:27:41] <KekSi> then upgraded to a 2.6 instance
[07:28:52] <KekSi> and after checking if all the DBs are upgradable with upgradeCheckAllDbs i tried shutting down the 2.6 and starting it up with 3.0 and i get "***aborting after invariant() failure"
[07:32:54] <KekSi> anyone had a problem like that before?
[07:35:29] <KekSi> nevermind i was being stupid.. the 2.4 and 2.6 in the docker containers ran as root (why would the official docker image run mongo as root?!) and mine doesn't
[08:21:27] <KekSi> and back with another problem.. i get "don't know what to do with file "/dump/wk.ns", skipping..." for every single file in the directory i just filled with mongodump on 3.0 with MMAPv1 and now try to restore that dump to 3.0 wiredTiger
[08:27:08] <KekSi> its a completely empty db and i'm trying to mongorestore --drop /dump .. how does it not know what to do with the files i mongodump'd with just --out about 5 minutes ago with the same 3.0.7 version..
[08:39:01] <KekSi> *facepalm* today isn't my day.. just mounting the wrong folders to the wrong endpoints :D
[08:52:07] <KekSi> nice. this is what i actually ran into: https://jira.mongodb.org/browse/TOOLS-939?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&showAll=true
[08:52:22] <KekSi> downgraded tools to 3.0.6 and the restore runs fine
[13:17:25] <grahamlyons> Hi, I'm looking for information on the `getmore` operation; should the `cursorid` always match the `cursorid` of the initial query?
[13:17:32] <grahamlyons> Can anyone help with that?
[13:22:06] <Derick> well, there must have been an associated query
[13:23:17] <dantix> hi, I have a collection with documents in format "document -> subarray -> subarray2" and I want to retrieve documents which match the query `db.documents.find({}, { 'subarray.subarray2': { $elemMatch: { created: { $gt: ISODate("2015-12-06T22:46:38.432Z") }} } })`. But I have an error `Cannot use $elemMatch projection on a nested field.`. How I can achieve this?
[15:13:46] <livcd> j:true this is related to journaling right ?
[15:16:37] <gabrielsch> Hi, I need to query this item on this inner array, how can I do that? :( https://gist.github.com/gabrielsch/c8c4a5fc7a43572a4f07#file-gistfile1-txt-L16
[15:16:53] <gabrielsch> for example, find({dropshippingMethods.methodId: 1})
[15:18:38] <joroci> hi, how do find a document by date?
[15:51:34] <jkva> I did notice a weird issue when sorting on an array value, but I found that documented on http://stackoverflow.com/a/9076983, that might explain why I am having trouble sorting on object-array-object key.
[17:20:58] <livcd> doh i can't initialize task 3 with mongoproc for final exam for m202
[17:34:35] <Captain_Haddock> How do I check the encoding used by a database or a collection?
[17:35:37] <cheeser> iirc, strings are utf-8 encoded in the database
[19:02:46] <rohitnsit08> is this a right place to ask mongo-scala issues?
[19:03:32] <cheeser> probably the mongodb-users list would be better. ross doesn't hang out in irc and he's hopefully offline with his family right now anyway.
[19:04:20] <allonhadaya> Is it possible to use haproxy as a tls termination proxy for external connections to a mongodb server?
[19:04:44] <rohitnsit08> @cheeser , thanks I'll use that..
[21:38:32] <StephenLynx> mongoose is the PHP of node environment, imo.
[21:40:41] <StephenLynx> but the most important question one should ask is: why do I need it? as a rule of thumb, more dependencies mean more problems. so what do you get in exchange of having these additional problems?
[23:10:49] <jayjo> I'm writing a little toy blog with flask & mongodb. I want to write posts in markdown (and hopefully, eventually, do something like SO where I can see the edits in real-time). Is there a cost or benefit to storing the documents in the db, vs the filesystem and having flask serve them?