Stopping gearman workers nicely

后端 未结 12 855
滥情空心
滥情空心 2021-01-30 04:24

I have a number of Gearman workers running constantly, saving things like records of user page views, etc. Occasionally, I\'ll update the PHP code that is used by the Gearman w

相关标签:
12条回答
  • 2021-01-30 04:32

    Hmm, You could implement a code in the workers to check occasionally if the source code was modified, if yes then just just kill themselves when they see fit. That is, check while they are in the middle of the job, and if job is very large.

    Other way would be implement some kind of an interrupt, maybe via network to say stop whenever you have the chance and restart.

    The last solution is helping to modify Gearman's source to include this functionality.

    0 讨论(0)
  • 2021-01-30 04:32

    Given the fact that the workers are written in PHP, it would be a good idea to recycle them on a known schedule. This can be a static amount of time since started or can be done after a certain number of jobs have been attempted.

    This essentially kills (no pun intended) two birds with one stone. You are are mitigating the potential for memory leaks, and you have a consistent way to determine when your workers will pick up on any potentially new code.

    I generally write workers such that they report their interval to stdout and/or to a logging facility so it is simple to check on where a worker is in the process.

    0 讨论(0)
  • 2021-01-30 04:34
    function AutoRestart() {
       static $startTime = time();
    
       if (filemtime(__FILE__) > $startTime) {
          exit();
       }
    }
    
    AutoRestart();  
    
    0 讨论(0)
  • 2021-01-30 04:35

    I use following code which supports both Ctrl-C and kill -TERM. By default supervisor sends TERM signal if have not modified signal= setting. In PHP 5.3+ declare(ticks = 1) is deprecated, use pcntl_signal_dispatch() instead.

    $terminate = false;
    pcntl_signal(SIGINT, function() use (&$terminate)
    {
        $terminate = true;
    });
    pcntl_signal(SIGTERM, function() use (&$terminate)
    {
        $terminate = true;
    });
    
    $worker = new GearmanWorker();
    $worker->addOptions(GEARMAN_WORKER_NON_BLOCKING);
    $worker->setTimeout(1000);
    $worker->addServer('127.0.0.1', 4730);
    $worker->addFunction('reverse', function(GearmanJob $job)
    {
        return strrev($job->workload());
    });
    
    $count = 500 + rand(0, 100); // rand to prevent multple workers restart at same time
    for($i = 0; $i < $count; $i++)
    {
        if ( $terminate )
        {
            break;
        }
        else
        {
            pcntl_signal_dispatch();
        }
    
        $worker->work();
    
        if ( $terminate )
        {
            break;
        }
        else
        {
            pcntl_signal_dispatch();
        }
    
        if ( GEARMAN_SUCCESS == $worker->returnCode() )
        {
            continue;
        }
    
        if ( GEARMAN_IO_WAIT != $worker->returnCode() && GEARMAN_NO_JOBS != $worker->returnCode() )
        {
            $e = new ErrorException($worker->error(), $worker->returnCode());
            // log exception
            break;
        }
    
        $worker->wait();
    }
    
    $worker->unregisterAll();
    
    0 讨论(0)
  • 2021-01-30 04:38

    I've been looking at this recently as well (though in perl with Gearman::XS). My usecase was the same as yours - allow a long-running gearman worker to periodically check for a new version of itself and reload.

    My first attempt was just having the worker keep track of how long since it last checked the worker script version (an md5sum would also work). Then once N seconds had elapsed, between jobs, it would check to see if a new version of itself was available, and restart itself (fork()/exec()). This did work OK, but workers registered for rare jobs could potentially end up waiting hours for work() to return, and thus for checking the current time.

    So I'm now setting a fairly short timeout when waiting for jobs with work(), so I can check the time more regularly. The PHP interface suggest that you can set this timeout value when registering for the job. I'm using SIGALRM to trigger the new-version check. The perl interface blocks on work(), so the alarm wasn't being triggered initially. Setting the timeout to 60 seconds got the SIGALRM working.

    0 讨论(0)
  • 2021-01-30 04:40

    Well, I posted this question, now I think I have found a good answer to it.

    If you look in the code for Net_Gearman_Worker, you'll find that in the work loop, the function stopWork is monitored, and if it returns true, it exits the function.

    I did the following:
    Using memcache, I created a cached value, gearman_restarttime, and I use a separate script to set that to the current timestamp whenever I update the site. (I used Memcache, but this could be stored anywhere--a database, a file, or anything).

    I extended the Worker class to be, essentially, Net_Gearman_Worker_Foo, and had all of my workers instantiate that. In the Foo class, I overrode the stopWork function to do the following: first, it checks gearman_restarttime; the first time through, it saves the value in a global variable. From then on, each time through, it compares the cached value to the global. If it has changed, the stopWork returns true, and the worker quits. A cron checks every minute to see if each worker is still running, and restarts any worker that has quit.

    It may be worth putting a timer in stopWork as well, and checking the cache only once every x minutes. In our case, Memcache is fast enough that checking the value each time doesn't seem to be a problem, but if you are using some other system to store off the current timestamp, checking less often would be better.

    0 讨论(0)
提交回复
热议问题