Having some trouble understanding the right approach here.

I have a connection to a mongodb replica set with three members (standard master-slave-slave). Everything is working fine with the connection when the master remains consistent.

pymongo.Connection(['host1:27017','host2:27018','host3:27019']).database_test

For some reason, when the replica set primary steps down, this starts to throw an autoreconnect exception that doesn't go away even after a new primary is elected.

Now I am aware that this exception needs to be caught and handled, most likely by waiting for the new primary to be elected. The problem I am having seems to be that it doesn't care at all once the new primary has been chosen. This "master has changed" exception just keeps coming up.

Printing the connection with __dict__ shows all three hosts.

I've tried passing the replicaset kwarg to the connection, but this comes up as an unexpected argument.

Is there a reason why this kind of connection wouldn't just start querying against the new primary.

link|improve this question

What version of pymongo are you using? There was a bug in 1.9 or 1.10, I can't remember which, where it could exhibit this behavior. It was definitely fixed as of 1.11 and 2.0+ – dcrosta Dec 14 '11 at 15:17
@dcrosta version 1.11 – DeaconDesperado Dec 14 '11 at 15:21
What version of MongoDB? 2.0.x has an issue where if you stepdown the primary it doesn't close it's connections. This will cause the problem you're having with PyMongo. jira.mongodb.org/browse/SERVER-4405 – Bernie Hackett Dec 14 '11 at 15:28
Mongo is version 2.0.0. I think this may be part of the problem. I should mention though that just now I specified the replicaSet using a mongouri rather than kwargs or driver properties, and this seemed to make it failover. Not sure if the bug will make it manifest again though. – DeaconDesperado Dec 14 '11 at 15:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.