duanlinghe8417 2011-11-12 13:17
浏览 93
已采纳

使用PHP / Net_Gearman的Gearman,执行从其他工作人员调用的工作的工作人员变得没有响应

I'm using gearman to distribute long running tasks across multiple worker servers. For one of my worker tasks, I attempt to invoke another background job. The background job is performed by another worker successfully... but that worker process doesn't respond to any new jobs that are added to gearman afterwards.

Anyone know what might be going on? Is this a feature of gearman?

EDIT:

Also, if I restart my workers they repeat the task that was queued by the other worker. Gearman appears to not be recognizing the job has completed.

EDIT 2:

tried:

var_dump($this->conn);
var_dump($this->handle);

From within the worker function that's called from my other worker. This is the output I receive:

NULL
string(0) ""

EDIT 3:

Well I came up with a hackey way to solve this. The following is the relevant snippet of code. I'm using codeigniter for my project, and my gearman servers are stored in as an array. I simply test in my job code if the connection is null, and if so reestablish it using a random gearman server. I'm sure this sucks so if anyone has some improved insight I would very much appreciate it.

class Net_Gearman_Job_notification_vc_friends_new_user extends Net_Gearman_Job_Common{

private $CI;

function __construct(){
    $this->CI =& get_instance();

    if(!$this->conn){

        $gearman = $this->CI->config->item('gearman');
        $servers = $gearman['servers'];
        $key = array_rand($servers);            
        $this->conn = Net_Gearman_Connection::connect($servers[$key]);

    }
}

展开全部

  • 写回答

1条回答 默认 最新

  • doudizhu2222 2011-11-13 13:04
    关注

    Figured it out! pretty stupid actually, forgot to call parent::__construct(); in my constructor... oops.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部