[11:53:47] <calaghan> i just changed "coordinates" to "location"
[11:54:23] <calaghan> var location = { address : address, name : locationName, location : {type: "Point", coordinates : [ lon, lat ]} }; Locations._ensureIndex( { "location": "2dsphere" } );
[12:17:03] <curiositi> Hey, I'm going to have structures/entities that the count of their attributes may differ in time (may increase/decrease), Is it a wise decision to use MongoDB?
[14:11:29] <gencoya> Hi. I'm trying to generate database dump file but I'm still getting error following (look at end of message). I googled that it can be caused by 4MB document size limit, but it seems that message is about 724MB. It's not possible that there is so much data in this database. recv(): message len 759714643 is too large759714643 DBClientCursor::init call() failed assertion: 10276 DBClientBase::findN: transport error: 0.0.0.0 query: { isd
[14:12:00] <gencoya> Can I ask you for help explaining what could be done wrong?
[15:46:08] <TechMiX> Hey, I'm going to have structures/entities that the count of their attributes may differ in time (may increase/decrease), Is it a wise decision to use MongoDB?
[15:48:52] <twatson123> im having a lot of trouble with one of my replica set members, can someone help me out?
[15:50:11] <joannac> twatson123: sure, but i need more information
[15:51:09] <twatson123> ok so my site went down, so i went to the primary and tried rs.status() but got unauthorized
[20:28:47] <Hitesh> I would like to process large amounf of data let say 10M row...I need to aggregate or group them with respective rules....which features are good in MongoDB? so that I can query efficiently and get the results in efficient time?
[20:37:38] <magicat1> Hi everyone. I've been using mongodb for a while and I like it. But some people I talk to keep saying I shouldn't be using it. What are the criticisms of mongodb? Why do some people think it's bad?
[20:47:15] <kizzx2> the docs tell me that if i'm going to shard i should do it early — so i'm going to create a shard cluster with just one shard to begin with. does that make sense or not at all better than not having sharding enabled at all?
[20:48:13] <cheeser> you can run with mongos long before you ever shard.
[20:48:41] <cheeser> the main disadvantage of waiting too long to enable sharding on a collection is that it can takea long time to balance your data if there's a lot of it.
[20:53:11] <kizzx2> cheeser: and if i understood the docs correctly, during balancing the cluster is still available right albeit slower right?
[22:06:37] <future28> Hey all, I am brand new to mongodb and need some help. For now, all I want to do is take a text file I have and map it with a key value. For example - I want to map "1" to the text file body ie "Hello, this is my first go at mongo."
[22:06:55] <future28> Could someone point me on the best way to do this? I'm using unix if it helps.