-
Notifications
You must be signed in to change notification settings - Fork 139
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
gearman_client_set_server_option calling failed #160
Comments
Hi @p-alik I also found the following description from gearman.info:
Just for confirm, is it correct for latest gearman version ? |
as far as I know it's correct. see also http://gearman.org/protocol/
|
Ok
https://github.com/gearman/gearmand/blob/master/libgearman/universal.cc#L554-L612 Can we skip broken connection in |
I'm afraid it want help because regarding to your initial description it seems to be an issue of pecl-gearman implementation. The change could lead to misbehavior of |
Hi @p-alik , Could you have some suggestions about Should we call it follow the addServer[s] ? or other correct place ? If project team can provide some use case about Thanks. |
See wcgallego/pecl-gearman#59 where this was originally brought up. The PECL extension has, for quite some time, had the php routine More problematically, since the PECL code would detect a failure in setting the server side option and throw an exception, the How should the PECL extension correctly handle the change to Ideally, there's a way to go back to the lazy-loading approach as making connections on every addServer() is not ideal. I hope this helps to clarify what's going on and that I've got it all straight :D |
Unfortunately no, because I use only
Why |
if your assumption is that late changes on |
The previous version of the PECL plugin was based on libgearman 1.1.8, which I can't find a direct tag/source for. However, I pulled up the 1.1.9 branch (https://github.com/gearman/gearmand/blame/1.1.9/libgearman/client.cc#L1802) which has the code causing the connection:
If you click the This function is vastly different: bool gearman_client_set_server_option(gearman_client_st *self, const char *option_arg, size_t option_arg_size)
{
if (self)
{
gearman_string_t option= { option_arg, option_arg_size };
return gearman_request_option(self->impl()->universal, option);
}
return false;
} And looks like it's setting an option to be used later, rather than trying to connect and add the option upon calling |
Version 1.1.8 released at 2013-06-07 still exists on launchpad Indeed implementation of |
@p-alik While I could argue that such a change is BC break, it's been this way for a while and other implementations have clearly adapted. I'm, personally, fine with the PHP extension changing, as posted earlier:
I was hoping there are some examples of other implementations that handled this API change in so much that the PHP author (@wcgallego) might be able to lean on. |
reading through this thread. quick recap: I took over maintaining around PHP 7 transition ~3 years ago. The project hadn't seen much in the way of progress for a while before that, hence falling behind. If the gearman core lib has has this change for quite some time, then yeah it does seem on the part of the pecl code to get in line. I'll look around for how others are adapting, but if anyone has a pointer for another language doing something similr, lmk! |
That's where it changed to connecting. It's possible that wasn't meant to happen in a patch release such as 1.1.9 and we should have made it 1.2 at that point. Brian left the code tree fallow for a while and we just didn't notice this change when we resumed releases. I'm very sorry that this has caused so much confusion. It is a BC break, but the original libgearman policy was that 1.1 was not a stable interface yet. So, I'm sorry again that it caused you issues, but at this point, I think we're just going to have to go forward with things the way they are. I'm open to thoughts about reverting it also. This might be better as a mailing list discussion. |
Thanks @SpamapS for the input. I'm hoping to work around it in the covering pecl lib here, but trying to sort through what the expected case should be then. It's still going to throw a warning even without setting the option. |
Hi,
I'm using wcgallego/pecl-gearman extension for my php project.
I have two gearman job servers A and B. If one of job servers was down but the other was up,
GearmanClient::doBackground
will be failed.I got exception:
Failed to set exception option
from wcgallego/pecl-gearman extension.Check wcgallego/pecl-gearman source code
https://github.com/wcgallego/pecl-gearman/blob/7480e92c630db1e5f1a51633fcb80ffdda4bd3eb/php_gearman_client.c#L290-L314
The reason that
gearman_client_set_server_option
calling failed.I found the similar issue report from launchpad:
https://bugs.launchpad.net/gearmand/+bug/1098413
Is that fixed ? or we don't need call
gearman_client_set_server_option
?Thanks.
The text was updated successfully, but these errors were encountered: