[00:33:49] <hydrajump> has anyone used https://github.com/sunitparekh/data-anonymization to anonymise mongodb data?
[01:04:23] <amcgregor> hydrajump: So far I've just rolled my own exporters in Python to anonymize the data we share.
[01:05:01] <amcgregor> hydrajump: Mostly it's just hashing things for my dataset, though. Or generating unique, consistent random string psudonyms to re-map session IDs and things.
[01:06:11] <amcgregor> (The latter is a special case to prevent correlation between individual exports, which simple hashing wouldn't accomplish.)
[04:29:30] <kakashi_> hi, I have a question about write_concern option in mongodb.
[04:30:45] <kakashi_> when we set it as { w: 0}, we find out some data get lost.
[04:32:13] <kakashi_> is there any way to check mongod apply error
[04:41:44] <Boomtime> alternatively, use the bulk API: http://api.mongodb.org/python/current/examples/bulk.html#ordered-bulk-write-operations
[04:44:01] <kakashi_> yes, we already use bulk insert
[04:44:23] <Boomtime> then multi-threading won't much more
[04:45:00] <Boomtime> the slowdown is just the difference between the documents you can actually insert versus the documents which didn't get inserted at all when you were using w:0
[04:45:29] <Boomtime> you are almost certainly at the limit of the your hard-drives
[05:12:33] <culthero> Anyone have any suggestions for partitioning fulltext index searches when you don't have a fixed predicate for intersection/
[05:12:45] <culthero> Speeding them up rather, against large collections (50-100gb)
[05:27:35] <culthero> I have 8m tweet documents, with text indexed, and searching against them for something that occurs 10k times is slow as shit, on a 4 shard setup with SSD's..
[05:29:11] <culthero> searching through the text index for something like RT
[05:29:55] <culthero> triggers between 2 minutes and 10 minutes of 200mb/s read from the disk.. can I somehow ... maybe if by timeframe lessen the amount of index it needs to run through
[05:31:37] <Jester831> I'd like to use mongodb objectID's for redis bitmaps, which are 32 bit, what kinds of options are there to avoid collisions?
[05:54:01] <bin> anyways ... thanks for your time guys :)
[06:01:06] <iksik> hm, what would be the simplest way to clone a collection? i don't want to migrate it to different db instance, just need to create local copy of it
[16:37:26] <dgarstang> I'm trying to create a user in mongo with mongo foo.js. The foo.js has a 'use dbc' in the first line but mongo doesn't like that
[16:54:15] <dgarstang> Is MongoDB an abandonware product?
[16:56:38] <jngd> dgarstang, I think no, why you ask?
[17:08:07] <culthero> dgarstang: If you're writing scripts for the mongo shell are you following this? http://docs.mongodb.org/manual/tutorial/write-scripts-for-the-mongo-shell/
[17:08:28] <culthero> IE: db = db.getSiblingDB('<db>')
[17:15:39] <dgarstang> Btw, here's my issue https://groups.google.com/forum/#!topic/mongodb-user/ex3mwDlgcC0
[17:16:32] <dgarstang> What I don't understand is... to create a user in the dbc database, do I connect to the dbc database or the admin database?
[17:17:49] <dgarstang> Because... if I connect to the admin database (eventhough I say 'use') it still creates the user in the admin database. If I connect to the dbc database as the admin user, then auth fails
[18:52:31] <mondan> can anyone help me with the setParameter syntax in the new YMAL config. I am trying to disable the localhost exception, but whatever I put in there doesnt seem to want to work
[18:55:04] <dgarstang> Can I set the mongo cli password via an environment variable?
[18:58:00] <mocx> yo, i have a mongoose problem, middleware issue, not sure if this is the right place to be
[18:58:39] <mocx> here's my code: pastie.org/pastes/9632075/text?key=gddijiwhkvbgeb22v2swg
[18:59:02] <mocx> basically when a password is less than 8 chars a new error should be thrown
[18:59:30] <mocx> it's catching the length, but the error only appears as {}
[19:00:38] <mocx> console.log(err) is showing it, but it's not being passed to next() it seems
[20:00:35] <dgarstang> Can I set the mongo cli password via an environment variable?
[23:18:28] <drags> hello, I'm running 2.4.10, I've enabled authentication (using keyFile directive) and now I cannot seem to grant myself the ability to use rs.status(), getting: { "ok" : 0, "errmsg" : "unauthorized" }
[23:28:47] <drags> I had actually forgot the clusterAdmin role on the superuser account initially, so I removed and re-added that user.. it may be possibe I wasn't use'ing admin at the time
[23:28:54] <Boomtime> i think the roles on your superuser are not what you think