[02:57:58] <cppking> hello guys, I'm using mongodb3.2.0 replset, and use pymong-3.2.2 client, I found this problem , I can't always get same output https://bpaste.net/show/891ff15b1220
[11:00:02] <Boomtime> is it functional? like, is mongodb even working?
[11:00:20] <chris|> when reconfiguring a replica set with replSetReconfig, is it sufficient to apply the config to all members or is the primary sufficient?
[11:00:52] <qliam> it's functionnal but i have latency
[11:11:57] <qliam> @Boomtime, top : https://gist.github.com/qliam/0e7fddbbfb3cc4e67ffb0d903b4554f8
[11:12:04] <chris|> since there is no way to backup all shards and all configs, there is bound to be a difference between the backups, and rebuilding something partially is basically the same as rebuilding it completely
[11:15:32] <joannac> chris|: um what? https://docs.mongodb.com/manual/administration/backup-sharded-clusters/
[11:17:07] <qliam> Boomtime have you enough informations ?
[11:17:44] <Boomtime> i didn't go though everything, but you have a lot of collscans going on - every operation is a collscan in fact
[11:18:00] <joannac> Also sorting in memory, looks like
[11:18:20] <Boomtime> collscans require the documents to be decompressed to be read
[11:19:43] <joannac> chris|: Cloud Manager also does a lot to try and get consistent backups of a sharded cluster.
[11:20:09] <qliam> so i have to create more index ?
[11:22:48] <chris|> joannac: if for some reason (hypothetical disaster) all config servers die bit shards are still there, the last backup of the config will be outdated compared to the shards. Since shard data is much larger as config data, I would like to not have to rely on restoring the shards from backup and then throw the oplog on top if I could avoid it. Hopefully thats clearer
[11:24:05] <e419> I have faced strange issue while trying to use mongodb mapReduce http://dba.stackexchange.com/questions/140012/error-13141-in-mongos-shell-while-trying-to-write-to-a-result-of-the-mapreduce-i
[11:24:37] <e419> Sadly stackexchange did noting to help me to identify the cause.
[11:25:14] <e419> Please, help me to dig into this one. http://dba.stackexchange.com/questions/140012/error-13141-in-mongos-shell-while-trying-to-write-to-a-result-of-the-mapreduce-i
[11:27:38] <qliam> Boomtime, is it possible de create index on sorting fields ?
[11:29:34] <e419> @qliam this affects my issue too?
[11:30:16] <joannac> chris|: rebuilding the config servers will almost certainly take much longer than that
[11:34:17] <e419> Guys, if anyone knows, could you please tell us why we can get "Chunk map pointed to incorrect chunk" with code 13141 when we try to write (out->replace) the result of mapReduce into a separate collection with sharded: true?
[11:35:27] <Exander> this issue is described in more detail on dba.stackexchange, but as of now, no one's answered yet, and it's a high-priority blocker for us...
[11:36:30] <e419> Collective unconscious please help
[11:36:37] <Boomtime> do you have support? you should raise a ticket if you do
[11:37:03] <Boomtime> otherwise that sounds quite complicated
[11:37:33] <Exander> no, we don't we have a devops responsible for the mongodb, and he can't find the reason, either
[11:39:12] <e419> Can you give us a mailing list to write to and ask, what should we do to get support and possibility to raise tickets?
[11:41:03] <joannac> e419: Contact someone in sales to discuss https://www.mongodb.com/contact
[15:15:59] <tantamount> But I get: "errmsg" : "Cannot update 'foo' and 'foo' at the same time"
[15:16:30] <Derick> i think you can only use one field once
[15:16:49] <tantamount> That certainly seems to be the implication, but how can I achieve what I want to do?
[15:17:16] <tantamount> I am trying to implement a concurrency counter that is incremented when an action needs to be performed and decremented once it is performed
[15:36:40] <shoconinja> i can see the user in the main node with the rs.initiate
[16:02:43] <Ange7> what is the problem with this update query : http://pastebin.com/LQQjctxj ? i don't understand why i can't insert new line ? (with upsert option to TRUE)
[16:27:02] <StephenLynx> he tried made a pardoxical query
[16:34:36] <chuy> Does $elemMatch stops looking for elements when it finds one element that matches the criteria? In other words, does $elemMatch behave like javascript's Array.some?
[16:35:10] <StephenLynx> yes, it matches only the first match on a projection.
[16:39:11] <StephenLynx> however, I think it behaves differently on match stages.
[16:39:23] <StephenLynx> I remember it being a little ambiguous, so I suggest you read on it.
[16:42:57] <chuy> The doc isn't detailed on that behavior. It says something along the lines of: 'matches documents where at least one array element passes the query criteria', but doesn't specify if it stops looking once there is a match
[16:50:07] <poz2k4444> Hi guys, I'm using mongo-connector to sync my mongo collection to elasticsearch but I cannot make mongo-connector to update the index when a document in the collection was updated, can anybody help me with this
[16:50:08] <ksan> guys, who can help me with replica set?
[16:54:02] <ankurjoveo> Hi, can anyone help me out with the recommended prod settings for the scala client.
[17:23:26] <renlo> whats the fastest way to serialize data from mongo?
[21:16:54] <Ben_1> how is mongoDB communicating between its async java driver and the server? is it message based communication or just asynchronous rpc?
[21:21:25] <cheeser> the wire protocol is the same as the regular driver.