bcg / em-mongo

EventMachine MongoDB Driver (based off of RMongo)
http://github.com/bcg/em-mongo
141 stars 47 forks source link

Feature request: replica set support #12

Open activeprospect opened 14 years ago

activeprospect commented 14 years ago

It would be great to support connecting to replica sets.

http://www.mongodb.org/display/DOCS/Connecting+Drivers+to+Replica+Sets

krobertson commented 13 years ago

Any plans for this?

tobsch commented 13 years ago

interested too!

rcreasey commented 13 years ago

+1

alebsack commented 13 years ago

+1

cypriss commented 12 years ago

I'd love tihs

fl00r commented 11 years ago

Just implemented this feature in my fork, going to check it out in production

ivobenedito commented 11 years ago

Hi @fl00r, Have you tested this out in a prod environment? When do you think it will be ready for a PR?

fl00r commented 11 years ago

@ivobenedito, a week in prod. While mongodb master get down, client successfully reconnected

ivobenedito commented 11 years ago

@fl00r Cool ;)!! I'm mounting a ReplicaSet on my localhost to also make some failover tests.

fl00r commented 11 years ago

It will be good to get some feedback :) Ehmm.. By the way, replica set connection should be established by new_replicas method

EM::Mongo::Connection.new_replicas([host:port, host:port, ...], timeout, reconnect_in: 1000)
ivobenedito commented 11 years ago

@fl00r Thanks for showing the syntax usage. Did some tests with it yesterday. Meanwhile, what do you think on having a more solid API, for example:

EM::Mongo::Connection.new # simple connector
EM::Mongo::ReplicaSetConnection.new # replset connector

# currently, the original mongo driver updated to this
Mongo::MongoClient.new # simple connector
Mongo::MongoReplicaSetClient.new # replset connector
ivobenedito commented 11 years ago

@fl00r Also, think I might have found a bug.

I'm using a ReplicaSet with 3 members, everytime I shutdown the primary and a secondary from the remaining 2 gets elected to master, the client works fine.

Meanwhile, if I shutdown another member (primary) and only leave 1 active (secondary), mongo doesn't elect the secondary to primary without an arbiter, which means the ReplSet stops working. This is how mongo works, and the app isn't able to fetch anything from Mongo because there is no primary node. (makes sense)

Then, If I bring another member in again, a primary is elected but the app/driver can't find it anymore.

Have you covered/tested this use case?

fl00r commented 11 years ago

Right now driver tries to reconnect few times with timeout delay and then calls on_unbind callback (which is do nothing by default).

In production you should raise an error and stop your application in case if after some retries client can't reconnect. Then you will get some alerts from production and then somehow solve your problem and start your application again (we use runitd for supervising our applications).

So you should pass on_unbind: proc{ fail "Can't reconnect blah blah blah" } option. Or I can add support of infinite reconnects, which looks like a bad option.

About naming. In my first iteration I've created ReplicaSetConnection class for connection :) so, now I think it is good idea to return back

fl00r commented 11 years ago

Hi. As far as em-mongo isn't supported enough I've begun to write new MongoDB Client on EventMachine. Protocol and some common stuf is already implemented. ReplicaSets support will be added till Monday.

https://github.com/fl00r/monga

If somebody interested - welcome!

bcg commented 11 years ago

@fl00r if you have any interest in taking over em-mongo, or just taking the name once you have feature parity, I would be more than happy to hand over the keys (to the gem as well). At the very least let me know when you think monga its stable for production use and I will make mention of it in the README.

I haven't used MongoDB in a long, long time and probably never will.

cc: @ivobenedito

fl00r commented 11 years ago

Hello! Somehow github removed all my notifications :/ It is a good idea to not produce many clients and to maintain only one.

fl00r commented 11 years ago

I've rewritten my client to support all kind of interfaces: blocking (over TCPSocket), synchronous (over Fibers on EventMachine) and asynchronous (over EventMachine). But API has changed because I've used callbacks instead of Deferrable. Going to rewrite Wiki and Readme soon

dCSeven commented 6 years ago

@fl00r I've seen that you've implemented replica set support on your repo (some time ago, I know).

If you like to, it would be a great thing to merge your commits into this here.