[00:27:43] <willwh_> hi guys - is there a mongoose channel? :)
[01:08:51] <rpcesar> im planning out an architecture that involves using local redis instances on 2 core systems for fast access on lightweight nodes for user sessions and items created on the particular node, however I am considering using a mongo replica set for storing persistant data such as long term user data and "archives" (migrating data to redis for counts and lists which get map/reduces later)
[01:09:40] <rpcesar> however, im concerned (curious) about the use of blocking tailable cursors in a replica-set situation. I know that capped collections cannot be shared, but whats the performance metrics and are there any problems related to replication with them?
[01:10:36] <rpcesar> im consderned with things like if its slaveOK safe and stable, etc
[01:10:57] <rpcesar> and is it only consistant with writes, what about slaves? etc.
[02:05:03] <xudongz> how can I specify the projection for a query through the wire protocol?
[02:08:26] <xudongz> meh should have read more carefully. returnFieldsSelector is what i was looking for
[05:34:00] <rpcesar> do tailable cursors (in await mode) support filters? I understand they do not support indexes, but I can't get a clear answer on whether it (in combination with blocking) allow blocking tailable cursors to maintain a filter.
[05:36:12] <rpcesar> in short, im using a few capped collections as a message pump of sorts. frontends write to the collection (single standalone mongo instance which contains only 4 capped collections). The plan is The frontends tail these collections as well and recieve the data. Ideally, i dont want the low-weight frontends to be recieving more data then necessary, only what would apply to those in its session
[05:37:49] <rpcesar> now originally, i was going to tail all that data and split it up on the consumer end and avoid the question (since I thought I read something that preciptates issues with that), but if the filtration could be done on the server, i could easily partition the data the server recieves at an earlier level, eliminating unnecessary network congestion and processing on stressed frontends
[08:12:22] <Infin1ty> when resync a replicaset member, i notice that the most consuming task is building the index, is there a way to make it multi-threaded, it's seem as this process is single-threaded
[08:17:57] <spyzer> hey guys, if i have a field as an array in a document and i have to do a projection where only that array field is retrieved so how do i do that in projection
[10:20:51] <foofoobar> Hi. So lets say I have a collection with a few million entries. Is it slow to access/search in it?
[10:21:09] <statu> ron, I was thinking to make it using something like that: Schema1.find(where, function(error, result) { result.forEach(Schema2.findOne(result.get('foreignKey'))})
[10:23:11] <statu> ron, but I don't know if is it the best way
[11:44:06] <TripleDES> Does this command "mongo admin --eval "printjson(db.system.users.find())"" work properly for anyone? (needs to have some users created)
[11:51:24] <TripleDES> hmm if I add .toArray() to the find it works, otherwise it prints find's help
[15:10:51] <coldclimate> Afternoon all, can anybody help me with an odd request - is it possible to add a new member to a replica set with it hidden and with no voting rights right from the start, rather than adding it and then setting?
[19:22:59] <ml623> Hello, newbie with mongodb abd scala/casbah, with an issue with geointersect query: https://gist.github.com/lrhazi/670c3fc20086011cadcf
[20:09:44] <ml623> remonvv: Regarding case sensitivity.. I assumed the examples in the casbah doc are correct: http://mongodb.github.io/casbah/guide/query_dsl.html#geospatial-operators
[20:12:35] <ml623> remonvv: actually just tried Polygone and gives same error: [MongoException: can't parse query (2dsphere): { $geoIntersects: { $geometry: { $type: "Polygon", coordinates: [ [ -7.739, 33.615 ]...
[20:13:53] <ml623> also tried without $ in $type: [MongoException: can't parse query (2dsphere): { $geoIntersects: { $geometry: { type: "Polygon", coordinates:...
[20:48:55] <ml623> remonvv: just checked db version is 2.4.5... yeah this is definitely casbah issue... maybe I have wrong version there somehow... I used sbt which I assumed would get the latest... will double check that. thanks.
[23:24:53] <pquery> can anyone help with a replication issue? I'm trying to replicate with ssl in aws, I keep running into an exception exception: need most members up to reconfigure, not ok ..." this is for both the ip and the hostname, and I can telnet to port 27017 on the instance(s)
[23:25:36] <pquery> I can't seem to rs.add or do a rs.reconfig
[23:43:44] <pquery> never mind it all came down to my keyfile being 1 character off
[23:52:29] <PaiSho> does anyone know how to retrieve a collection from a DBObject with the java driver?
[23:52:40] <PaiSho> i have a db object called "user"