[00:15:07] <kexmex> does c# driver store password securely?
[00:56:24] <themoebius> Hey, I'm having a problem with the pymongo MongoClient and MongoReplicaSetClient connections compared with the old plain Connection object. It seems like every single update is result in a "command", which is to say the command column in mongostat is about equal to the number of updates I'm doing. It's also making everything go pretty slow. I've confirmed this both in replication and stand-alone environments
[02:48:32] <jdelgado> Quick question - how horrible of an idea is it to write cross datacenter (Oregon and Virginia) and then wait for a reply? Better solutions for immediate consistency across datacenters?
[04:30:08] <kojul> is there anyway to run mongo without binding to an ip and a port? aka, just through the unix socket?
[04:31:35] <wojas> kojul: even if you could, it would be hard to do any useful replication
[04:32:54] <kojul> true, but for this set up, i'm just using mongo because it's required by a web application that i'm installing and I don't need to replicate, and I'm going to use the socket anyway.
[04:33:56] <wojas> kojul: https://jira.mongodb.org/browse/SERVER-866 looks like it's supported
[04:37:16] <kojul> wojas: I was just wondering if there was a way to use _only_ sockets. as in turn off tcp/ip binding. If not, then I'll just deal with it, it's just that almost every other program I've ever used that supported UDS also supported turning off it's network capabilities.
[06:36:28] <goddard> how can i run mongo db server?
[08:58:20] <T-Gunn> i set up mongodb on an ubuntu virtual machine and all of a sudden i am getting JavaScript execution failed: Error: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:L112 when i try "mongo" in a console
[08:58:40] <T-Gunn> i just did a fresh install of it from the 10gen repo
[09:00:40] <T-Gunn> and now rubymine is getting stuck in starting up.. maybe it's a java problem...
[10:49:33] <wereHamster> I just added a node to a replset and it's stuck in LOADINGCONFIG. What could be the reason?
[13:04:40] <majyk> when I upgraded to 2.4 and now 2.4.1 I started noticing these messages spammed all over my log. I'm wondering how to get rid of them? This did not happen with 2.2.3. command denied: { replSetGetStatus: 1.0, forShell: 1.0 }
[16:12:48] <Guest24381> Hello! Given an array in a document like { "a": [ { "b": 5, "c": 7} , {"b": 8, "c": 9 }}, how can I query for documents where a[0].b==5 and where a[1].c==9 (but whether a[0].c==9 is not relevant)?
[16:17:13] <kali> Guest24381: but don't expect the indexes to be of any help
[16:19:51] <T-Gunn> anyone know what could cause mongodb to have a "javascript execution failed: Error: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:L112"
[16:20:38] <double_p> T-Gunn: iptables? or you called mongod to use a diff (host)port
[16:21:15] <T-Gunn> i havent messed with any settings for mongo at all.. havent touched the iptables either...
[16:21:57] <double_p> but in default iptables would protect so
[16:25:05] <T-Gunn> i set that up and it works beautifully.. then i tried to visit the rails app that is using mongodb and it is failing to connect now
[16:37:42] <majyk> when I upgraded to 2.4 and now 2.4.1 I started noticing these messages spammed all over my log. I'm wondering how to get rid of them? This did not happen with 2.2.3. command denied: { replSetGetStatus: 1.0, forShell: 1.0 }
[16:50:14] <Guest24381> kali: why not, couldn't I create an index on a.0.b or a.b?
[18:05:43] <hotch> Hey everyone, I was using my mongodb blog with gists to store <code>, what's the best way to save (mostly .js) in <code> tags in mongodb text attar?
[18:08:56] <kali> well, if it's just a dump storage, a text or a binary field should do
[18:17:48] <hotch> so right now i have an attribute on a post in my app which is a large app but the posts are just a piece of it. i have "content" as a text attribute. before i was just using a gist and want to not need github/gists and instead store locally on mongo
[18:17:55] <hotch> versus a blog article loading with a bunch of xhr calls
[18:18:38] <kali> you'll access mongodb through a mongo client anyway, so it will deal with the required escaping
[18:21:09] <hotch> hmmm ok ill just use the shell then.
[21:25:25] <kreedy> hey everyone, I see that renameCollection does a global write lock while it is running. how heavy of an operation is it though?
[21:26:09] <kreedy> the collection is 25GB and tons of documents. does it need to do an operation to every document (and thus take a long time), or does it do a single operation?