-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to add muti job servers? #6
Comments
Any news on this? |
I've ceased using Gearman in favor of RabbitMQ and thus are not actively developing this module anymore, only making bug fixes etc. |
Oh, I see. |
Gearman is a fine product, it just turned out that most of the jobs that needed to be done were better handled asynchrounously in queues like provided by Rabbit. And as Rabbit can handle RPC-like calls also (although not as easy as with Gearman), there wasn't a reason to keep another dependency around. |
Thanks for your input. I will check out rabbitmq! I reckon that one could produce something like below to do even-distributed calls to a set of Gearman workers. I guess that keeping track of retries would be necessary before putting it into production:
|
I want to add 2 job servers as failover, how to do add 2 job servers? and how to register worker to muti job servers?
php have the method like this:
The text was updated successfully, but these errors were encountered: