[02:27:23] <morenoh149> any reccomendation on a video for an intermediate developer on advanced mongodb topics?
[02:27:36] <morenoh149> data modeling, scaling considerations, optimizations?
[03:07:01] <ronak> I'm having some trouble starting up my database. I shutdown it down properly using the shutdown command from the shell but when I start it up it's giving me this: "DBException 10446: mmap: can't map area of size 0 file: /data/test.3". There are 20 something data files for the test database. I'm not sure how/why that data file is 0 byte.
[03:08:11] <ronak> I tried repairing and got the same error.
[04:17:52] <tejas-manohar> on all operating systems can you just type `mongod` in shell to start mongo
[04:18:02] <tejas-manohar> or on some do you need to do things like service mongod start
[06:21:38] <ra21vi_> is there minimal mongo ODM for python? Mongoengine is way bulky, mongokit needs me to register document post connection. I need simple, where I manage connection and then an ODM to make dotted-dict and expose raw-query-manager
[11:01:39] <sabrehagen> hi guys, i have this mongoose query to find a document based on two fields, only one of which has to be found, hence an or: http://i.imgur.com/ioNRsX2.png. if i delete the _id check, the username is matched. if i include the _id check, the username is never matched, but the _id is always matched regardless of whether username is included or not. i can't work out why this would be. can anybody help?
[11:12:41] <joannac> probably the way the query is evaluated, it always finds the one matching _id
[11:16:18] <sabrehagen> joannac: i'm not sure i follow you. the aim is to support a rest api where you can supply either the userId or username and get back the matching user, therefore the results should be mutually exclusive.
[14:49:02] <salty-horse> hi. If I remove documents from a collection, will the free space be used by other collections in the database?
[15:39:27] <sdsheeks> Kind of quiet in here today.
[16:03:06] <salty-horse> TuxOtaku, I don't understand that error. I wonder what kind of "permission" does it mean? :) permission to write, or permission to start due to the lock already being in place?
[16:03:27] <TuxOtaku> then tried to start it again
[16:03:46] <TuxOtaku> 2014-12-07T11:00:57.806-0500 [initandlisten] exception in initAndListen: 10309 Unable to create/open lock file: /data/db/mongod.lock errno:13 Permission denied Is a mongod instance
[16:05:21] <lareth> Hi I am trying to store the results of a mapreduce operation into a a collection which should contain the documents in a format like: year.months.month.values
[16:06:10] <lareth> I tried doing that in the mapreduce function by passing this with the above dot notation, but it creates a collection named as such
[19:42:21] <chetandhembre_> How much data i can insert in single insert query ?
[20:58:01] <sabrehagen> hi guys, i have this mongoose query to find a document based on two fields, only one of which has to be found, hence an or: http://i.imgur.com/ioNRsX2.png. if i delete the _id check, the username is matched. if i include the _id check, the username is never matched, but the _id is always matched regardless of whether username is included or not. i can't work out why this would be. can anybody help?