[04:32:34] <copumpkin> hi! I'm using mongoimport to do some batch importing and occasionally it'll print out a log saying "dbname.collectionname <somesize> MB" and nothing else. Anyone know what that means? Most of the time it just says that it connected and imported X documents
[04:35:08] <copumpkin> oh, perhaps it's a progress indicator?
[08:58:49] <catphish> i just noticed that db.addUser() is deprecated, are there any considerations when using db.createUser instead, or will it accept the same object?
[09:01:20] <catphish> they look the same, or at least backward compatible
[13:13:59] <KekSi> i only now noticed that the 3.0 upgrade from 2.6 changed the config format and set it to 127.0.0.1 .. now i added some docker containers and those can't really access 127.0.0.1
[13:20:51] <sagarawdw> can anyone help with django mongo auth?
[14:58:08] <chris|> can someone explain to me in what way tryNext() is different from if(hasNext())next() on the Java driver?
[14:58:22] <chris|> I sure hope hasNext() does not block... ?
[18:15:31] <eindoofus> hi, how can i display the "Running query" within the server console output? i'm running 3.2
[18:20:19] <eindoofus> only seeing it output COMMAND, STORAGE, INDEX in --verbose, but not QUERY
[18:23:02] <eindoofus> "Changed in version 3.0: serverStatus no longer outputs the workingSet, indexCounters, and recordStats sections."
[18:23:21] <eindoofus> does this mean the Running Query is no longer available in the output!?
[18:25:41] <saml> if I use url as _id, what kind of problems do i expect?
[18:49:29] <Pinkamena_D> Can I match on groups of two values? For example I have documents with {'a':1,'b':2,...} I have a list of acceptable a and b values [{'a':3,'b':4},{'a':3,'b':5}], can I find documents where for example a=3ANDb=4 OR a=3ANDb=5 ?
[19:10:19] <saml> using golang mgo, c.Insert(&mystruct{...}) fails cause type mystruct{ID bson.ObjectID `bson:"_id"`