Added option to stop worker when the queue is empty
This commit is contained in:
parent
d0fda5f1b4
commit
180dd6547c
26
worker.php
26
worker.php
@ -8,11 +8,37 @@ if (php_sapi_name() !== 'cli') {
|
|||||||
die('This script can run only from the command line.'.PHP_EOL);
|
die('This script can run only from the command line.'.PHP_EOL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$options = getopt('', array(
|
||||||
|
'stop',
|
||||||
|
));
|
||||||
|
|
||||||
|
function check_job_left(Pheanstalk $connection, array $options)
|
||||||
|
{
|
||||||
|
if (isset($options['stop'])) {
|
||||||
|
$queues = $connection->listTubes();
|
||||||
|
|
||||||
|
if (in_array(BEANSTALKD_QUEUE, $queues)) {
|
||||||
|
$stats = $connection->statsTube(BEANSTALKD_QUEUE);
|
||||||
|
echo 'Jobs in queue: '.$stats->current_jobs_ready.PHP_EOL;
|
||||||
|
(int) $stats->current_jobs_ready === 0 && exit(0);
|
||||||
|
} else {
|
||||||
|
echo 'No queue'.PHP_EOL;
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$connection = new Pheanstalk(BEANSTALKD_HOST);
|
$connection = new Pheanstalk(BEANSTALKD_HOST);
|
||||||
|
|
||||||
|
check_job_left($connection, $options);
|
||||||
|
|
||||||
while ($job = $connection->reserveFromTube(BEANSTALKD_QUEUE)) {
|
while ($job = $connection->reserveFromTube(BEANSTALKD_QUEUE)) {
|
||||||
$feed_id = $job->getData();
|
$feed_id = $job->getData();
|
||||||
|
|
||||||
echo 'Processing feed_id='.$feed_id.PHP_EOL;
|
echo 'Processing feed_id='.$feed_id.PHP_EOL;
|
||||||
|
|
||||||
Model\Feed\refresh($feed_id);
|
Model\Feed\refresh($feed_id);
|
||||||
$connection->delete($job);
|
$connection->delete($job);
|
||||||
|
|
||||||
|
check_job_left($connection, $options);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user