Workers can now be started exclusively from the daemon and other workers
This commit is contained in:
parent
69300291f0
commit
28f8beebfc
115
bin/daemon.php
115
bin/daemon.php
|
@ -6,8 +6,38 @@
|
||||||
*
|
*
|
||||||
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
||||||
*/
|
*/
|
||||||
function shutdown() {
|
|
||||||
posix_kill(posix_getpid(), SIGHUP);
|
use Friendica\App;
|
||||||
|
use Friendica\BaseObject;
|
||||||
|
use Friendica\Core\Config;
|
||||||
|
use Friendica\Core\Worker;
|
||||||
|
|
||||||
|
// Ensure that daemon.php is executed from the base path of the installation
|
||||||
|
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
|
||||||
|
$directory = dirname($_SERVER["argv"][0]);
|
||||||
|
|
||||||
|
if (substr($directory, 0, 1) != "/") {
|
||||||
|
$directory = $_SERVER["PWD"]."/".$directory;
|
||||||
|
}
|
||||||
|
$directory = realpath($directory."/..");
|
||||||
|
|
||||||
|
chdir($directory);
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once "boot.php";
|
||||||
|
require_once "include/dba.php";
|
||||||
|
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
BaseObject::setApp($a);
|
||||||
|
|
||||||
|
require_once ".htconfig.php";
|
||||||
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
||||||
|
|
||||||
|
Config::load();
|
||||||
|
|
||||||
|
if (!isset($pidfile)) {
|
||||||
|
die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
|
||||||
|
'$pidfile = "/path/to/daemon.pid";'."\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array("start", $_SERVER["argv"])) {
|
if (in_array("start", $_SERVER["argv"])) {
|
||||||
|
@ -30,27 +60,11 @@ if (empty($_SERVER["argv"][0])) {
|
||||||
die("Unexpected script behaviour. This message should never occur.\n");
|
die("Unexpected script behaviour. This message should never occur.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch the base directory
|
$pid = @file_get_contents($pidfile);
|
||||||
$directory = dirname($_SERVER["argv"][0]);
|
|
||||||
|
|
||||||
if (substr($directory, 0, 1) != "/") {
|
if (empty($pid) && in_array($mode, ["stop", "status"])) {
|
||||||
$directory = $_SERVER["PWD"]."/".$directory;
|
Config::set('system', 'worker_daemon_mode', false);
|
||||||
}
|
|
||||||
$directory = realpath($directory."/..");
|
|
||||||
|
|
||||||
include $directory."/.htconfig.php";
|
|
||||||
|
|
||||||
if (!isset($pidfile)) {
|
|
||||||
die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
|
|
||||||
'$pidfile = "/path/to/daemon.pid";'."\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (in_array($mode, array("stop", "status"))) {
|
|
||||||
$pid = @file_get_contents($pidfile);
|
|
||||||
|
|
||||||
if (!$pid) {
|
|
||||||
die("Pidfile wasn't found. Is the daemon running?\n");
|
die("Pidfile wasn't found. Is the daemon running?\n");
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($mode == "status") {
|
if ($mode == "status") {
|
||||||
|
@ -60,6 +74,7 @@ if ($mode == "status") {
|
||||||
|
|
||||||
unlink($pidfile);
|
unlink($pidfile);
|
||||||
|
|
||||||
|
Config::set('system', 'worker_daemon_mode', false);
|
||||||
die("Daemon process $pid isn't running.\n");
|
die("Daemon process $pid isn't running.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,17 +83,19 @@ if ($mode == "stop") {
|
||||||
|
|
||||||
unlink($pidfile);
|
unlink($pidfile);
|
||||||
|
|
||||||
|
logger("Worker daemon process $pid was killed.", LOGGER_DEBUG);
|
||||||
|
|
||||||
|
Config::set('system', 'worker_daemon_mode', false);
|
||||||
die("Worker daemon process $pid was killed.\n");
|
die("Worker daemon process $pid was killed.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Starting worker daemon.\n";
|
if (!empty($pid) && posix_kill($pid, 0)) {
|
||||||
|
die("Daemon process $pid is already running.\n");
|
||||||
if (isset($a->config['php_path'])) {
|
|
||||||
$php = $a->config['php_path'];
|
|
||||||
} else {
|
|
||||||
$php = "php";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logger('Starting worker daemon.', LOGGER_DEBUG);
|
||||||
|
echo "Starting worker daemon.\n";
|
||||||
|
|
||||||
// Switch over to daemon mode.
|
// Switch over to daemon mode.
|
||||||
if ($pid = pcntl_fork())
|
if ($pid = pcntl_fork())
|
||||||
return; // Parent
|
return; // Parent
|
||||||
|
@ -95,32 +112,32 @@ if (posix_setsid() < 0)
|
||||||
if ($pid = pcntl_fork())
|
if ($pid = pcntl_fork())
|
||||||
return; // Parent
|
return; // Parent
|
||||||
|
|
||||||
|
// We lose the database connection upon forking
|
||||||
|
dba::connect($db_host, $db_user, $db_pass, $db_data);
|
||||||
|
unset($db_host, $db_user, $db_pass, $db_data);
|
||||||
|
|
||||||
|
Config::set('system', 'worker_daemon_mode', true);
|
||||||
|
|
||||||
|
// Just to be sure that this script really runs endlessly
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
$pid = getmypid();
|
$pid = getmypid();
|
||||||
file_put_contents($pidfile, $pid);
|
file_put_contents($pidfile, $pid);
|
||||||
|
|
||||||
|
$wait_interval = intval(Config::get('system', 'cron_interval', 5)) * 60;
|
||||||
|
|
||||||
// Now running as a daemon.
|
// Now running as a daemon.
|
||||||
while (true) {
|
while (true) {
|
||||||
// Just to be sure that this script really runs endlessly
|
logger('Call the worker', LOGGER_DEBUG);
|
||||||
set_time_limit(0);
|
Worker::spawnWorker();
|
||||||
|
|
||||||
// Call the worker
|
logger("Sleep for $wait_interval seconds - or when a worker needs to be called", LOGGER_DEBUG);
|
||||||
$cmdline = $php.' bin/worker.php';
|
$i = 0;
|
||||||
|
do {
|
||||||
$executed = false;
|
sleep(1);
|
||||||
|
} while (($i++ < $wait_interval) && !Worker::IPCJobsExists());
|
||||||
if (function_exists('proc_open')) {
|
}
|
||||||
$resource = proc_open($cmdline . ' &', array(), $foo, $directory);
|
|
||||||
|
function shutdown() {
|
||||||
if (is_resource($resource)) {
|
posix_kill(posix_getpid(), SIGHUP);
|
||||||
$executed = true;
|
|
||||||
proc_close($resource);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$executed) {
|
|
||||||
exec($cmdline.' spawn');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Now sleep for 5 minutes
|
|
||||||
sleep(300);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ class dba {
|
||||||
private static $relation = [];
|
private static $relation = [];
|
||||||
|
|
||||||
public static function connect($serveraddr, $user, $pass, $db) {
|
public static function connect($serveraddr, $user, $pass, $db) {
|
||||||
if (!is_null(self::$db)) {
|
if (!is_null(self::$db) && self::connected()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,10 +53,15 @@ class Worker
|
||||||
// We now start the process. This is done after the load check since this could increase the load.
|
// We now start the process. This is done after the load check since this could increase the load.
|
||||||
self::startProcess();
|
self::startProcess();
|
||||||
|
|
||||||
|
// The daemon doesn't need to fork new workers anymore, since we started a process
|
||||||
|
if (Config::get('system', 'worker_daemon_mode', false)) {
|
||||||
|
self::IPCSetJobState(false);
|
||||||
|
}
|
||||||
|
|
||||||
// Kill stale processes every 5 minutes
|
// Kill stale processes every 5 minutes
|
||||||
$last_cleanup = Config::get('system', 'poller_last_cleaned', 0);
|
$last_cleanup = Config::get('system', 'worker_last_cleaned', 0);
|
||||||
if (time() > ($last_cleanup + 300)) {
|
if (time() > ($last_cleanup + 300)) {
|
||||||
Config::set('system', 'poller_last_cleaned', time());
|
Config::set('system', 'worker_last_cleaned', time());
|
||||||
self::killStaleWorkers();
|
self::killStaleWorkers();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,16 +113,16 @@ class Worker
|
||||||
}
|
}
|
||||||
|
|
||||||
// If possible we will fetch new jobs for this worker
|
// If possible we will fetch new jobs for this worker
|
||||||
if (!$refetched && Lock::set('poller_worker_process', 0)) {
|
if (!$refetched && Lock::set('worker_process', 0)) {
|
||||||
$stamp = (float)microtime(true);
|
$stamp = (float)microtime(true);
|
||||||
$refetched = self::findWorkerProcesses($passing_slow);
|
$refetched = self::findWorkerProcesses($passing_slow);
|
||||||
self::$db_duration += (microtime(true) - $stamp);
|
self::$db_duration += (microtime(true) - $stamp);
|
||||||
Lock::remove('poller_worker_process');
|
Lock::remove('worker_process');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// To avoid the quitting of multiple workers only one worker at a time will execute the check
|
// To avoid the quitting of multiple workers only one worker at a time will execute the check
|
||||||
if (Lock::set('poller_worker', 0)) {
|
if (Lock::set('worker', 0)) {
|
||||||
$stamp = (float)microtime(true);
|
$stamp = (float)microtime(true);
|
||||||
// Count active workers and compare them with a maximum value that depends on the load
|
// Count active workers and compare them with a maximum value that depends on the load
|
||||||
if (self::tooMuchWorkers()) {
|
if (self::tooMuchWorkers()) {
|
||||||
|
@ -130,7 +135,7 @@ class Worker
|
||||||
logger('Memory limit reached, quitting.', LOGGER_DEBUG);
|
logger('Memory limit reached, quitting.', LOGGER_DEBUG);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Lock::remove('poller_worker');
|
Lock::remove('worker');
|
||||||
self::$db_duration += (microtime(true) - $stamp);
|
self::$db_duration += (microtime(true) - $stamp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -140,6 +145,9 @@ class Worker
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (Config::get('system', 'worker_daemon_mode', false)) {
|
||||||
|
self::IPCSetJobState(false);
|
||||||
|
}
|
||||||
logger("Couldn't select a workerqueue entry, quitting.", LOGGER_DEBUG);
|
logger("Couldn't select a workerqueue entry, quitting.", LOGGER_DEBUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,7 +252,7 @@ class Worker
|
||||||
|
|
||||||
$stamp = (float)microtime(true);
|
$stamp = (float)microtime(true);
|
||||||
if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
|
if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
|
||||||
Config::set('system', 'last_poller_execution', DateTimeFormat::utcNow());
|
Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
|
||||||
}
|
}
|
||||||
self::$db_duration = (microtime(true) - $stamp);
|
self::$db_duration = (microtime(true) - $stamp);
|
||||||
|
|
||||||
|
@ -285,7 +293,7 @@ class Worker
|
||||||
|
|
||||||
$stamp = (float)microtime(true);
|
$stamp = (float)microtime(true);
|
||||||
if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
|
if (dba::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
|
||||||
Config::set('system', 'last_poller_execution', DateTimeFormat::utcNow());
|
Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
|
||||||
}
|
}
|
||||||
self::$db_duration = (microtime(true) - $stamp);
|
self::$db_duration = (microtime(true) - $stamp);
|
||||||
} else {
|
} else {
|
||||||
|
@ -851,6 +859,11 @@ class Worker
|
||||||
dba::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $mypid], $ids);
|
dba::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $mypid], $ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The daemon doesn't need to fork new workers anymore, since we are inside the worker
|
||||||
|
if (Config::get('system', 'worker_daemon_mode', false)) {
|
||||||
|
self::IPCSetJobState(false);
|
||||||
|
}
|
||||||
|
|
||||||
return $found;
|
return $found;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -873,7 +886,7 @@ class Worker
|
||||||
dba::close($r);
|
dba::close($r);
|
||||||
|
|
||||||
$stamp = (float)microtime(true);
|
$stamp = (float)microtime(true);
|
||||||
if (!Lock::set('poller_worker_process')) {
|
if (!Lock::set('worker_process')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
self::$lock_duration = (microtime(true) - $stamp);
|
self::$lock_duration = (microtime(true) - $stamp);
|
||||||
|
@ -882,7 +895,7 @@ class Worker
|
||||||
$found = self::findWorkerProcesses($passing_slow);
|
$found = self::findWorkerProcesses($passing_slow);
|
||||||
self::$db_duration += (microtime(true) - $stamp);
|
self::$db_duration += (microtime(true) - $stamp);
|
||||||
|
|
||||||
Lock::remove('poller_worker_process');
|
Lock::remove('worker_process');
|
||||||
|
|
||||||
if ($found) {
|
if ($found) {
|
||||||
$r = dba::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
|
$r = dba::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
|
||||||
|
@ -1071,19 +1084,25 @@ class Worker
|
||||||
dba::insert('workerqueue', ['parameter' => $parameters, 'created' => $created, 'priority' => $priority]);
|
dba::insert('workerqueue', ['parameter' => $parameters, 'created' => $created, 'priority' => $priority]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We tell the daemon that a new job entry exists
|
||||||
|
if (Config::get('system', 'worker_daemon_mode', false)) {
|
||||||
|
self::IPCSetJobState(true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Should we quit and wait for the worker to be called as a cronjob?
|
// Should we quit and wait for the worker to be called as a cronjob?
|
||||||
if ($dont_fork) {
|
if ($dont_fork) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there is a lock then we don't have to check for too much worker
|
// If there is a lock then we don't have to check for too much worker
|
||||||
if (!Lock::set('poller_worker', 0)) {
|
if (!Lock::set('worker', 0)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there are already enough workers running, don't fork another one
|
// If there are already enough workers running, don't fork another one
|
||||||
$quit = self::tooMuchWorkers();
|
$quit = self::tooMuchWorkers();
|
||||||
Lock::remove('poller_worker');
|
Lock::remove('worker');
|
||||||
|
|
||||||
if ($quit) {
|
if ($quit) {
|
||||||
return true;
|
return true;
|
||||||
|
@ -1121,4 +1140,30 @@ class Worker
|
||||||
{
|
{
|
||||||
return Process::deleteByPid();
|
return Process::deleteByPid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static function checkIPC()
|
||||||
|
{
|
||||||
|
dba::e("CREATE TABLE IF NOT EXISTS `worker-ipc` (`key` integer, `jobs` boolean) ENGINE = MEMORY;");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function IPCSetJobState($jobs)
|
||||||
|
{
|
||||||
|
self::checkIPC();
|
||||||
|
|
||||||
|
dba::update('worker-ipc', ['jobs' => $jobs], ['key' => 1], true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function IPCJobsExists()
|
||||||
|
{
|
||||||
|
self::checkIPC();
|
||||||
|
|
||||||
|
$row = dba::selectFirst('worker-ipc', ['jobs'], ['key' => 1]);
|
||||||
|
|
||||||
|
// When we don't have a row, no job is running
|
||||||
|
if (!DBM::is_result($row)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (bool)$row['jobs'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue