[00:10:36] <zmansiv> if i have "project" documents and each project can have multiple screenshots, would it be better to a) store them as an array of binary data in the project document, b) store them as an array of base64d strings in the project document, or c) use gridfs?
[00:10:56] <zmansiv> i really doubt they will exceed 16mb in size
[02:30:14] <geoffeg> If I have a huge DB, say 500GB, and I run a db.coll.remove({'some-non-indexes-field' : 1}) in mongodb 2.2, will that grab the db write lock and prevent other writes?
[08:25:59] <Tiller> Is it possible from {id: 1, a: "Last", b: ["Old", "Old"]} to make an update request to have {id: 1, a: "Last", b: ["Old", "Old", "Last"]} ? =/
[09:00:00] <Tiller> Thanks joannac, I saw something like that before :) I'll have to look at the java driver doc :)
[09:46:09] <DragonBe> what's the preferred setup for running a single mongodb instance? disk, RAM and CPU requirements are our major focus at this time.
[12:07:55] <fel> haha!! and the first M101J (starting on 21st Oct.) as the second M101JS (starting on 14th Oct) have the dead python picture instead of coffee and nodejs logos
[12:08:09] <fel> they are probably fake courses, damned!
[12:13:21] <fel> @joannac : ok, thank you very much.
[12:16:37] <joannac> Okay, I can't fix it, but I pinged some people. WIll probably be fixed once the US wakes up.
[12:20:35] <tonni> how do I query for the last element of an array? Something lihe the first element from the docs: db.inventory.find( { 'memos.0.by': 'shipping' } )
[12:24:34] <tonni> or is it not possible with the dot notation
[14:41:58] <quickdry21> I'm having some weird issues with primaries refusing/closing connections... When I do a rs.status() from a secondary, the primary is shown as healthy, with the last heartbeat received w/in the last minute... I'm getting the following error when trying to connect via mongo shell:
[14:41:59] <quickdry21> Error: DBClientBase::findN: transport error: giordano.gmlapi.com:10002 ns: admin.$cmd query: { whatsmyuri: 1 } at src/mongo/shell/mongo.js:147
[15:53:46] <n008> why can't I query for collections using 'attr.1' ?
[15:56:28] <stongo1> I have three servers, each with host names in /etc/hosts pointing to each other. I'm trying to create a replica set with the three machines, but keep getting an error on rs.initiate saying all members are not up
[15:56:54] <stongo1> but if I telnet to each hostname and port, I can verify each is accessible
[15:58:00] <stongo1> do I need to actually have FQD's working for the replica set servers?
[15:58:43] <saml> how can I recover collection foobar from foobar.0 foobar.ns ?
[15:58:48] <joe_p> stongo1: they all have to be able to reach each other. try doing a telnet to the mongo port from each machine to make sure they are all reachable from one another
[15:59:31] <stongo1> joe_p, I did confirm with telnet all are reachable
[15:59:58] <stongo1> I have authentication enabled on each server, does that make any difference?
[21:03:17] <duncancmt> Hi! After a reboot, I'm getting this error message on my sharded cluster, and I can't access any of my data. "error creating initial database config information :: caused by :: can't find a shard to put new db on" the code is 10185.
[21:21:26] <duncancmt> Here's the pastebin http://pastebin.com/8xjEbCe8
[21:24:31] <joe_p> duncancmt: are your config servers running - the error log implies they are not - ERROR: config servers not in sync! no config servers reachable
[21:25:21] <joe_p> sorry - that was the top of the log - my bad
[21:27:16] <duncancmt> yeah, the config servers took a bit longer to come up than I expected and I jumped the gun on starting the mongos
[22:01:01] <joannac> Open up a mongo to a mongos and see what's in your config db?
[22:04:20] <defaultro> hey guys, how can we mimic MySQL's limit offset?