3 * @file src/Core/Worker.php
5 namespace Friendica\Core;
7 use Friendica\BaseObject;
8 use Friendica\Database\DBA;
9 use Friendica\Model\Process;
10 use Friendica\Util\DateTimeFormat;
11 use Friendica\Util\Logger\WorkerLogger;
12 use Friendica\Util\Network;
15 * @file src/Core/Worker.php
17 * @brief Contains the class for the worker background job processing
21 * @brief Worker methods
25 private static $up_start;
26 private static $db_duration = 0;
27 private static $db_duration_count = 0;
28 private static $db_duration_write = 0;
29 private static $db_duration_stat = 0;
30 private static $lock_duration = 0;
31 private static $last_update;
34 * @brief Processes the tasks that are in the workerqueue table
36 * @param boolean $run_cron Should the cron processes be executed?
38 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
40 public static function processQueue($run_cron = true)
44 // Ensure that all "strtotime" operations do run timezone independent
45 date_default_timezone_set('UTC');
47 self::$up_start = microtime(true);
49 // At first check the maximum load. We shouldn't continue with a high load
50 if ($a->isMaxLoadReached()) {
51 Logger::log('Pre check: maximum load reached, quitting.', Logger::DEBUG);
55 // We now start the process. This is done after the load check since this could increase the load.
58 // Kill stale processes every 5 minutes
59 $last_cleanup = Config::get('system', 'worker_last_cleaned', 0);
60 if (time() > ($last_cleanup + 300)) {
61 Config::set('system', 'worker_last_cleaned', time());
62 self::killStaleWorkers();
65 // Count active workers and compare them with a maximum value that depends on the load
66 if (self::tooMuchWorkers()) {
67 Logger::log('Pre check: Active worker limit reached, quitting.', Logger::DEBUG);
71 // Do we have too few memory?
72 if ($a->isMinMemoryReached()) {
73 Logger::log('Pre check: Memory limit reached, quitting.', Logger::DEBUG);
77 // Possibly there are too much database connections
78 if (self::maxConnectionsReached()) {
79 Logger::log('Pre check: maximum connections reached, quitting.', Logger::DEBUG);
83 // Possibly there are too much database processes that block the system
84 if ($a->isMaxProcessesReached()) {
85 Logger::log('Pre check: maximum processes reached, quitting.', Logger::DEBUG);
89 // Now we start additional cron processes if we should do so
96 // We fetch the next queue entry that is about to be executed
97 while ($r = self::workerProcess()) {
98 foreach ($r as $entry) {
99 // Assure that the priority is an integer value
100 $entry['priority'] = (int)$entry['priority'];
102 // The work will be done
103 if (!self::execute($entry)) {
104 Logger::log('Process execution failed, quitting.', Logger::DEBUG);
108 // If possible we will fetch new jobs for this worker
109 if (!self::getWaitingJobForPID() && Lock::acquire('worker_process', 0)) {
110 self::findWorkerProcesses();
111 Lock::release('worker_process');
115 // To avoid the quitting of multiple workers only one worker at a time will execute the check
116 if (Lock::acquire('worker', 0)) {
117 // Count active workers and compare them with a maximum value that depends on the load
118 if (self::tooMuchWorkers()) {
119 Logger::log('Active worker limit reached, quitting.', Logger::DEBUG);
120 Lock::release('worker');
125 if ($a->isMinMemoryReached()) {
126 Logger::log('Memory limit reached, quitting.', Logger::DEBUG);
127 Lock::release('worker');
130 Lock::release('worker');
133 // Quit the worker once every 5 minutes
134 if (time() > ($starttime + 300)) {
135 Logger::log('Process lifetime reached, quitting.', Logger::DEBUG);
140 // Cleaning up. Possibly not needed, but it doesn't harm anything.
141 if (Config::get('system', 'worker_daemon_mode', false)) {
142 self::IPCSetJobState(false);
144 Logger::log("Couldn't select a workerqueue entry, quitting process " . getmypid() . ".", Logger::DEBUG);
148 * @brief Check if non executed tasks do exist in the worker queue
150 * @return boolean Returns "true" if tasks are existing
153 private static function entriesExists()
155 $stamp = (float)microtime(true);
156 $exists = DBA::exists('workerqueue', ["NOT `done` AND `pid` = 0 AND `next_try` < ?", DateTimeFormat::utcNow()]);
157 self::$db_duration += (microtime(true) - $stamp);
162 * @brief Returns the number of deferred entries in the worker queue
164 * @return integer Number of deferred entries in the worker queue
167 private static function deferredEntries()
169 $stamp = (float)microtime(true);
170 $count = DBA::count('workerqueue', ["NOT `done` AND `pid` = 0 AND `next_try` > ?", DateTimeFormat::utcNow()]);
171 self::$db_duration += (microtime(true) - $stamp);
172 self::$db_duration_count += (microtime(true) - $stamp);
177 * @brief Returns the number of non executed entries in the worker queue
179 * @return integer Number of non executed entries in the worker queue
182 private static function totalEntries()
184 $stamp = (float)microtime(true);
185 $count = DBA::count('workerqueue', ['done' => false, 'pid' => 0]);
186 self::$db_duration += (microtime(true) - $stamp);
187 self::$db_duration_count += (microtime(true) - $stamp);
192 * @brief Returns the highest priority in the worker queue that isn't executed
194 * @return integer Number of active worker processes
197 private static function highestPriority()
199 $stamp = (float)microtime(true);
200 $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
201 $workerqueue = DBA::selectFirst('workerqueue', ['priority'], $condition, ['order' => ['priority']]);
202 self::$db_duration += (microtime(true) - $stamp);
203 if (DBA::isResult($workerqueue)) {
204 return $workerqueue["priority"];
211 * @brief Returns if a process with the given priority is running
213 * @param integer $priority The priority that should be checked
215 * @return integer Is there a process running with that priority?
218 private static function processWithPriorityActive($priority)
220 $condition = ["`priority` <= ? AND `pid` != 0 AND NOT `done`", $priority];
221 return DBA::exists('workerqueue', $condition);
225 * @brief Execute a worker entry
227 * @param array $queue Workerqueue entry
229 * @return boolean "true" if further processing should be stopped
230 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
232 public static function execute($queue)
238 // Quit when in maintenance
239 if (Config::get('system', 'maintenance', false, true)) {
240 Logger::log("Maintenance mode - quit process ".$mypid, Logger::DEBUG);
244 // Constantly check the number of parallel database processes
245 if ($a->isMaxProcessesReached()) {
246 Logger::log("Max processes reached for process ".$mypid, Logger::DEBUG);
250 // Constantly check the number of available database connections to let the frontend be accessible at any time
251 if (self::maxConnectionsReached()) {
252 Logger::log("Max connection reached for process ".$mypid, Logger::DEBUG);
256 $argv = json_decode($queue["parameter"], true);
258 // Check for existance and validity of the include file
261 if (method_exists(sprintf('Friendica\Worker\%s', $include), 'execute')) {
262 // We constantly update the "executed" date every minute to avoid being killed too soon
263 if (!isset(self::$last_update)) {
264 self::$last_update = strtotime($queue["executed"]);
267 $age = (time() - self::$last_update) / 60;
268 self::$last_update = time();
271 $stamp = (float)microtime(true);
272 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
273 self::$db_duration += (microtime(true) - $stamp);
274 self::$db_duration_write += (microtime(true) - $stamp);
279 self::execFunction($queue, $include, $argv, true);
281 $stamp = (float)microtime(true);
282 $condition = ["`id` = ? AND `next_try` < ?", $queue['id'], DateTimeFormat::utcNow()];
283 if (DBA::update('workerqueue', ['done' => true], $condition)) {
284 Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
286 self::$db_duration = (microtime(true) - $stamp);
287 self::$db_duration_write += (microtime(true) - $stamp);
292 // The script could be provided as full path or only with the function name
293 if ($include == basename($include)) {
294 $include = "include/".$include.".php";
297 if (!validate_include($include)) {
298 Logger::log("Include file ".$argv[0]." is not valid!");
299 $stamp = (float)microtime(true);
300 DBA::delete('workerqueue', ['id' => $queue["id"]]);
301 self::$db_duration = (microtime(true) - $stamp);
302 self::$db_duration_write += (microtime(true) - $stamp);
306 require_once $include;
308 $funcname = str_replace(".php", "", basename($argv[0]))."_run";
310 if (function_exists($funcname)) {
311 // We constantly update the "executed" date every minute to avoid being killed too soon
312 if (!isset(self::$last_update)) {
313 self::$last_update = strtotime($queue["executed"]);
316 $age = (time() - self::$last_update) / 60;
317 self::$last_update = time();
320 $stamp = (float)microtime(true);
321 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
322 self::$db_duration += (microtime(true) - $stamp);
323 self::$db_duration_write += (microtime(true) - $stamp);
326 self::execFunction($queue, $funcname, $argv, false);
328 $stamp = (float)microtime(true);
329 if (DBA::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
330 Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
332 self::$db_duration = (microtime(true) - $stamp);
333 self::$db_duration_write += (microtime(true) - $stamp);
335 Logger::log("Function ".$funcname." does not exist");
336 $stamp = (float)microtime(true);
337 DBA::delete('workerqueue', ['id' => $queue["id"]]);
338 self::$db_duration = (microtime(true) - $stamp);
339 self::$db_duration_write += (microtime(true) - $stamp);
346 * @brief Execute a function from the queue
348 * @param array $queue Workerqueue entry
349 * @param string $funcname name of the function
350 * @param array $argv Array of values to be passed to the function
351 * @param boolean $method_call boolean
353 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
355 private static function execFunction($queue, $funcname, $argv, $method_call)
359 $argc = count($argv);
361 $logger = $a->getLogger();
362 $workerLogger = new WorkerLogger($logger, $funcname);
364 $workerLogger ->info("Process start.", ['priority' => $queue["priority"], 'id' => $queue["id"]]);
366 $stamp = (float)microtime(true);
368 // We use the callstack here to analyze the performance of executed worker entries.
369 // For this reason the variables have to be initialized.
370 $a->getProfiler()->reset();
374 $up_duration = microtime(true) - self::$up_start;
376 // Reset global data to avoid interferences
379 // Set the workerLogger as new default logger
380 Logger::init($workerLogger);
382 call_user_func_array(sprintf('Friendica\Worker\%s::execute', $funcname), $argv);
384 $funcname($argv, $argc);
386 Logger::init($logger);
390 $duration = (microtime(true) - $stamp);
392 /* With these values we can analyze how effective the worker is.
393 * The database and rest time should be low since this is the unproductive time.
394 * The execution time is the productive time.
395 * By changing parameters like the maximum number of workers we can check the effectivness.
397 $dbtotal = number_format(self::$db_duration - (self::$db_duration_count + self::$db_duration_write + self::$db_duration_stat), 4);
398 $dbcount = number_format(self::$db_duration_count, 4);
399 $dbstat = number_format(self::$db_duration_stat, 4);
400 $dbwrite = number_format(self::$db_duration_write, 4);
401 $dblock = number_format(self::$lock_duration, 4);
402 $rest = number_format(max(0, $up_duration - (self::$db_duration + self::$lock_duration)), 4);
403 $exec = number_format($duration, 4);
405 $logger->info('Performance log.', ['total' => $dbtotal, 'count' => $dbcount, 'stat' => $dbstat, 'write' => $dbwrite, 'block' => $dblock, 'rest' => $rest, 'exec' => $exec]);
407 self::$up_start = microtime(true);
408 self::$db_duration = 0;
409 self::$db_duration_count = 0;
410 self::$db_duration_stat = 0;
411 self::$db_duration_write = 0;
412 self::$lock_duration = 0;
414 if ($duration > 3600) {
415 $logger->info('Longer than 1 hour.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
416 } elseif ($duration > 600) {
417 $logger->info('Longer than 10 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
418 } elseif ($duration > 300) {
419 $logger->info('Longer than 5 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
420 } elseif ($duration > 120) {
421 $logger->info('Longer than 2 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
424 $workerLogger->info('Process done. ', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => number_format($duration, 4)]);
426 $a->getProfiler()->saveLog($a->getLogger(), "ID " . $queue["id"] . ": " . $funcname);
428 $cooldown = Config::get("system", "worker_cooldown", 0);
431 $logger->info('Cooldown.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'cooldown' => $cooldown]);
437 * @brief Checks if the number of database connections has reached a critical limit.
439 * @return bool Are more than 3/4 of the maximum connections used?
440 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
442 private static function maxConnectionsReached()
444 // Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself.
445 $max = Config::get("system", "max_connections");
447 // Fetch the percentage level where the worker will get active
448 $maxlevel = Config::get("system", "max_connections_level", 75);
451 // the maximum number of possible user connections can be a system variable
452 $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'");
453 if (DBA::isResult($r)) {
456 // Or it can be granted. This overrides the system variable
457 $stamp = (float)microtime(true);
458 $r = DBA::p('SHOW GRANTS');
459 self::$db_duration += (microtime(true) - $stamp);
460 while ($grants = DBA::fetch($r)) {
461 $grant = array_pop($grants);
462 if (stristr($grant, "GRANT USAGE ON")) {
463 if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match)) {
471 // If $max is set we will use the processlist to determine the current number of connections
472 // The processlist only shows entries of the current user
474 $stamp = (float)microtime(true);
475 $r = DBA::p('SHOW PROCESSLIST');
476 self::$db_duration += (microtime(true) - $stamp);
477 $used = DBA::numRows($r);
480 Logger::log("Connection usage (user values): ".$used."/".$max, Logger::DEBUG);
482 $level = ($used / $max) * 100;
484 if ($level >= $maxlevel) {
485 Logger::log("Maximum level (".$maxlevel."%) of user connections reached: ".$used."/".$max);
490 // We will now check for the system values.
491 // This limit could be reached although the user limits are fine.
492 $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_connections'");
493 if (!DBA::isResult($r)) {
496 $max = intval($r["Value"]);
500 $r = DBA::fetchFirst("SHOW STATUS WHERE `variable_name` = 'Threads_connected'");
501 if (!DBA::isResult($r)) {
504 $used = intval($r["Value"]);
508 Logger::log("Connection usage (system values): ".$used."/".$max, Logger::DEBUG);
510 $level = $used / $max * 100;
512 if ($level < $maxlevel) {
515 Logger::log("Maximum level (".$level."%) of system connections reached: ".$used."/".$max);
520 * @brief fix the queue entry if the worker process died
524 private static function killStaleWorkers()
526 $stamp = (float)microtime(true);
527 $entries = DBA::select(
529 ['id', 'pid', 'executed', 'priority', 'parameter'],
530 ['NOT `done` AND `pid` != 0'],
531 ['order' => ['priority', 'created']]
533 self::$db_duration += (microtime(true) - $stamp);
535 while ($entry = DBA::fetch($entries)) {
536 if (!posix_kill($entry["pid"], 0)) {
537 $stamp = (float)microtime(true);
540 ['executed' => DBA::NULL_DATETIME, 'pid' => 0],
541 ['id' => $entry["id"]]
543 self::$db_duration += (microtime(true) - $stamp);
544 self::$db_duration_write += (microtime(true) - $stamp);
546 // Kill long running processes
547 // Check if the priority is in a valid range
548 if (!in_array($entry["priority"], [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE])) {
549 $entry["priority"] = PRIORITY_MEDIUM;
552 // Define the maximum durations
553 $max_duration_defaults = [PRIORITY_CRITICAL => 720, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 720];
554 $max_duration = $max_duration_defaults[$entry["priority"]];
556 $argv = json_decode($entry["parameter"], true);
557 $argv[0] = basename($argv[0]);
559 // How long is the process already running?
560 $duration = (time() - strtotime($entry["executed"])) / 60;
561 if ($duration > $max_duration) {
562 Logger::log("Worker process ".$entry["pid"]." (".substr(json_encode($argv), 0, 50).") took more than ".$max_duration." minutes. It will be killed now.");
563 posix_kill($entry["pid"], SIGTERM);
565 // We killed the stale process.
566 // To avoid a blocking situation we reschedule the process at the beginning of the queue.
567 // Additionally we are lowering the priority. (But not PRIORITY_CRITICAL)
568 $new_priority = $entry["priority"];
569 if ($entry["priority"] == PRIORITY_HIGH) {
570 $new_priority = PRIORITY_MEDIUM;
571 } elseif ($entry["priority"] == PRIORITY_MEDIUM) {
572 $new_priority = PRIORITY_LOW;
573 } elseif ($entry["priority"] != PRIORITY_CRITICAL) {
574 $new_priority = PRIORITY_NEGLIGIBLE;
576 $stamp = (float)microtime(true);
579 ['executed' => DBA::NULL_DATETIME, 'created' => DateTimeFormat::utcNow(), 'priority' => $new_priority, 'pid' => 0],
580 ['id' => $entry["id"]]
582 self::$db_duration += (microtime(true) - $stamp);
583 self::$db_duration_write += (microtime(true) - $stamp);
585 Logger::log("Worker process ".$entry["pid"]." (".substr(json_encode($argv), 0, 50).") now runs for ".round($duration)." of ".$max_duration." allowed minutes. That's okay.", Logger::DEBUG);
592 * @brief Checks if the number of active workers exceeds the given limits
594 * @return bool Are there too much workers running?
595 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
597 private static function tooMuchWorkers()
599 $queues = Config::get("system", "worker_queues", 4);
601 $maxqueues = $queues;
603 $active = self::activeWorkers();
605 // Decrease the number of workers at higher load
606 $load = System::currentLoad();
608 $maxsysload = intval(Config::get("system", "maxloadavg", 50));
610 /* Default exponent 3 causes queues to rapidly decrease as load increases.
611 * If you have 20 max queues at idle, then you get only 5 queues at 37.1% of $maxsysload.
612 * For some environments, this rapid decrease is not needed.
613 * With exponent 1, you could have 20 max queues at idle and 13 at 37% of $maxsysload.
615 $exponent = intval(Config::get('system', 'worker_load_exponent', 3));
616 $slope = pow(max(0, $maxsysload - $load) / $maxsysload, $exponent);
617 $queues = intval(ceil($slope * $maxqueues));
621 if (Config::get('system', 'worker_jpm')) {
622 $intervals = explode(',', Config::get('system', 'worker_jpm_range'));
623 $jobs_per_minute = [];
624 foreach ($intervals as $interval) {
625 if ($interval == 0) {
628 $interval = (int)$interval;
631 $stamp = (float)microtime(true);
632 $jobs = DBA::p("SELECT COUNT(*) AS `jobs` FROM `workerqueue` WHERE `done` AND `executed` > UTC_TIMESTAMP() - INTERVAL ? MINUTE", $interval);
633 self::$db_duration += (microtime(true) - $stamp);
634 self::$db_duration_stat += (microtime(true) - $stamp);
635 if ($job = DBA::fetch($jobs)) {
636 $jobs_per_minute[$interval] = number_format($job['jobs'] / $interval, 0);
640 $processlist = ' - jpm: '.implode('/', $jobs_per_minute);
643 // Create a list of queue entries grouped by their priority
644 $listitem = [0 => ''];
646 $idle_workers = $active;
648 $deferred = self::deferredEntries();
650 if (Config::get('system', 'worker_debug')) {
651 $waiting_processes = 0;
652 // Now adding all processes with workerqueue entries
653 $stamp = (float)microtime(true);
654 $jobs = DBA::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` WHERE NOT `done` AND `next_try` < ? GROUP BY `priority`", DateTimeFormat::utcNow());
655 self::$db_duration += (microtime(true) - $stamp);
656 self::$db_duration_stat += (microtime(true) - $stamp);
657 while ($entry = DBA::fetch($jobs)) {
658 $stamp = (float)microtime(true);
659 $processes = DBA::p("SELECT COUNT(*) AS `running` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE NOT `done` AND `priority` = ?", $entry["priority"]);
660 self::$db_duration += (microtime(true) - $stamp);
661 self::$db_duration_stat += (microtime(true) - $stamp);
662 if ($process = DBA::fetch($processes)) {
663 $idle_workers -= $process["running"];
664 $waiting_processes += $entry["entries"];
665 $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"];
667 DBA::close($processes);
670 $entries = $deferred + $waiting_processes;
672 $entries = self::totalEntries();
673 $waiting_processes = max(0, $entries - $deferred);
674 $stamp = (float)microtime(true);
675 $jobs = DBA::p("SELECT COUNT(*) AS `running`, `priority` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` AND NOT `done` GROUP BY `priority` ORDER BY `priority`");
676 self::$db_duration += (microtime(true) - $stamp);
677 self::$db_duration_stat += (microtime(true) - $stamp);
679 while ($entry = DBA::fetch($jobs)) {
680 $idle_workers -= $entry["running"];
681 $listitem[$entry["priority"]] = $entry["priority"].":".$entry["running"];
686 $listitem[0] = "0:" . max(0, $idle_workers);
688 $processlist .= ' ('.implode(', ', $listitem).')';
690 if (Config::get("system", "worker_fastlane", false) && ($queues > 0) && self::entriesExists() && ($active >= $queues)) {
691 $top_priority = self::highestPriority();
692 $high_running = self::processWithPriorityActive($top_priority);
694 if (!$high_running && ($top_priority > PRIORITY_UNDEFINED) && ($top_priority < PRIORITY_NEGLIGIBLE)) {
695 Logger::log("There are jobs with priority ".$top_priority." waiting but none is executed. Open a fastlane.", Logger::DEBUG);
696 $queues = $active + 1;
700 Logger::log("Load: " . $load ."/" . $maxsysload . " - processes: " . $deferred . "/" . $active . "/" . $waiting_processes . $processlist . " - maximum: " . $queues . "/" . $maxqueues, Logger::DEBUG);
702 // Are there fewer workers running as possible? Then fork a new one.
703 if (!Config::get("system", "worker_dont_fork", false) && ($queues > ($active + 1)) && ($entries > 1)) {
704 Logger::log("Active workers: ".$active."/".$queues." Fork a new worker.", Logger::DEBUG);
705 if (Config::get('system', 'worker_daemon_mode', false)) {
706 self::IPCSetJobState(true);
713 // if there are too much worker, we don't spawn a new one.
714 if (Config::get('system', 'worker_daemon_mode', false) && ($active > $queues)) {
715 self::IPCSetJobState(false);
718 return $active > $queues;
722 * @brief Returns the number of active worker processes
724 * @return integer Number of active worker processes
727 private static function activeWorkers()
729 $stamp = (float)microtime(true);
730 $count = DBA::count('process', ['command' => 'Worker.php']);
731 self::$db_duration += (microtime(true) - $stamp);
736 * @brief Returns waiting jobs for the current process id
738 * @return array waiting workerqueue jobs
741 private static function getWaitingJobForPID()
743 $stamp = (float)microtime(true);
744 $r = DBA::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
745 self::$db_duration += (microtime(true) - $stamp);
746 if (DBA::isResult($r)) {
747 return DBA::toArray($r);
755 * @brief Returns the next jobs that should be executed
757 * @return array array with next jobs
760 private static function nextProcess()
762 $priority = self::nextPriority();
763 if (empty($priority)) {
764 Logger::info('No tasks found');
768 if ($priority <= PRIORITY_MEDIUM) {
769 $limit = Config::get('system', 'worker_fetch_limit', 1);
775 $stamp = (float)microtime(true);
776 $condition = ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()];
777 $tasks = DBA::select('workerqueue', ['id'], $condition, ['limit' => $limit, 'order' => ['created']]);
778 self::$db_duration += (microtime(true) - $stamp);
779 while ($task = DBA::fetch($tasks)) {
780 $ids[] = $task['id'];
784 Logger::info('Found:', ['id' => $ids, 'priority' => $priority]);
789 * @brief Returns the priority of the next workerqueue job
791 * @return string priority
794 private static function nextPriority()
797 $priorities = [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE];
798 foreach ($priorities as $priority) {
799 $stamp = (float)microtime(true);
800 if (DBA::exists('workerqueue', ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()])) {
801 $waiting[$priority] = true;
803 self::$db_duration += (microtime(true) - $stamp);
806 if (!empty($waiting[PRIORITY_CRITICAL])) {
807 return PRIORITY_CRITICAL;
812 $stamp = (float)microtime(true);
813 $processes = DBA::p("SELECT COUNT(DISTINCT(`process`.`pid`)) AS `running`, `priority` FROM `process`
814 INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
815 WHERE NOT `done` GROUP BY `priority`");
816 self::$db_duration += (microtime(true) - $stamp);
817 while ($process = DBA::fetch($processes)) {
818 $running[$process['priority']] = $process['running'];
819 $running_total += $process['running'];
821 DBA::close($processes);
823 foreach ($priorities as $priority) {
824 if (!empty($waiting[$priority]) && empty($running[$priority])) {
825 Logger::info('No running worker found with priority {priority} - assigning it.', ['priority' => $priority]);
830 $active = max(self::activeWorkers(), $running_total);
831 $priorities = max(count($waiting), count($running));
835 for ($i = 1; $i <= $priorities; ++$i) {
836 $total += pow($i, $exponent);
840 for ($i = 1; $i <= $priorities; ++$i) {
841 $limit[$priorities - $i] = max(1, round($active * (pow($i, $exponent) / $total)));
845 foreach ($running as $priority => $workers) {
846 if ($workers < $limit[$i++]) {
847 Logger::info('Priority {priority} has got {workers} workers out of a limit of {limit}', ['priority' => $priority, 'workers' => $workers, 'limit' => $limit[$i - 1]]);
852 if (!empty($waiting)) {
853 $priority = array_shift(array_keys($waiting));
854 Logger::info('No underassigned priority found, now taking the highest priority.', ['priority' => $priority]);
862 * @brief Find and claim the next worker process for us
864 * @return boolean Have we found something?
865 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
867 private static function findWorkerProcesses()
871 $ids = self::nextProcess();
873 // If there is no result we check without priority limit
875 $stamp = (float)microtime(true);
876 $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
877 $result = DBA::select('workerqueue', ['id'], $condition, ['limit' => 1, 'order' => ['priority', 'created']]);
878 self::$db_duration += (microtime(true) - $stamp);
880 while ($id = DBA::fetch($result)) {
887 $stamp = (float)microtime(true);
888 $condition = ['id' => $ids, 'done' => false, 'pid' => 0];
889 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $mypid], $condition);
890 self::$db_duration += (microtime(true) - $stamp);
891 self::$db_duration_write += (microtime(true) - $stamp);
898 * @brief Returns the next worker process
900 * @return string SQL statement
901 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
903 public static function workerProcess()
905 // There can already be jobs for us in the queue.
906 $waiting = self::getWaitingJobForPID();
907 if (!empty($waiting)) {
911 $stamp = (float)microtime(true);
912 if (!Lock::acquire('worker_process')) {
915 self::$lock_duration += (microtime(true) - $stamp);
917 $found = self::findWorkerProcesses();
919 Lock::release('worker_process');
922 $stamp = (float)microtime(true);
923 $r = DBA::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
924 self::$db_duration += (microtime(true) - $stamp);
925 return DBA::toArray($r);
931 * @brief Removes a workerqueue entry from the current process
935 public static function unclaimProcess()
939 $stamp = (float)microtime(true);
940 DBA::update('workerqueue', ['executed' => DBA::NULL_DATETIME, 'pid' => 0], ['pid' => $mypid, 'done' => false]);
941 self::$db_duration += (microtime(true) - $stamp);
942 self::$db_duration_write += (microtime(true) - $stamp);
946 * @brief Call the front end worker
948 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
950 public static function callWorker()
952 if (!Config::get("system", "frontend_worker")) {
956 $url = System::baseUrl()."/worker";
957 Network::fetchUrl($url, false, $redirects, 1);
961 * @brief Call the front end worker if there aren't any active
963 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
965 public static function executeIfIdle()
967 if (!Config::get("system", "frontend_worker")) {
971 // Do we have "proc_open"? Then we can fork the worker
972 if (function_exists("proc_open")) {
973 // When was the last time that we called the worker?
974 // Less than one minute? Then we quit
975 if ((time() - Config::get("system", "worker_started")) < 60) {
979 Config::set("system", "worker_started", time());
981 // Do we have enough running workers? Then we quit here.
982 if (self::tooMuchWorkers()) {
983 // Cleaning dead processes
984 self::killStaleWorkers();
985 Process::deleteInactive();
992 Logger::log('Call worker', Logger::DEBUG);
997 // We cannot execute background processes.
998 // We now run the processes from the frontend.
999 // This won't work with long running processes.
1002 self::clearProcesses();
1004 $workers = self::activeWorkers();
1006 if ($workers == 0) {
1012 * @brief Removes long running worker processes
1014 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1016 public static function clearProcesses()
1018 $timeout = Config::get("system", "frontend_worker_timeout", 10);
1020 /// @todo We should clean up the corresponding workerqueue entries as well
1021 $stamp = (float)microtime(true);
1022 $condition = ["`created` < ? AND `command` = 'worker.php'",
1023 DateTimeFormat::utc("now - ".$timeout." minutes")];
1024 DBA::delete('process', $condition);
1025 self::$db_duration = (microtime(true) - $stamp);
1026 self::$db_duration_write += (microtime(true) - $stamp);
1030 * @brief Runs the cron processes
1032 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1034 private static function runCron()
1036 Logger::log('Add cron entries', Logger::DEBUG);
1038 // Check for spooled items
1039 self::add(['priority' => PRIORITY_HIGH, 'force_priority' => true], 'SpoolPost');
1041 // Run the cron job that calls all other jobs
1042 self::add(['priority' => PRIORITY_MEDIUM, 'force_priority' => true], 'Cron');
1044 // Cleaning dead processes
1045 self::killStaleWorkers();
1049 * @brief Spawns a new worker
1050 * @param bool $do_cron
1052 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1054 public static function spawnWorker($do_cron = false)
1056 $command = 'bin/worker.php';
1058 $args = ['no_cron' => !$do_cron];
1060 get_app()->proc_run($command, $args);
1062 // after spawning we have to remove the flag.
1063 if (Config::get('system', 'worker_daemon_mode', false)) {
1064 self::IPCSetJobState(false);
1069 * @brief Adds tasks to the worker queue
1071 * @param (integer|array) priority or parameter array, strings are deprecated and are ignored
1073 * next args are passed as $cmd command line
1074 * or: Worker::add(PRIORITY_HIGH, "Notifier", "drop", $drop_id);
1075 * or: Worker::add(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "CreateShadowEntry", $post_id);
1077 * @return boolean "false" if proc_run couldn't be executed
1078 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1079 * @note $cmd and string args are surrounded with ""
1085 public static function add($cmd)
1087 $args = func_get_args();
1089 if (!count($args)) {
1093 $arr = ['args' => $args, 'run_cmd' => true];
1095 Hook::callAll("proc_run", $arr);
1096 if (!$arr['run_cmd'] || !count($args)) {
1100 $priority = PRIORITY_MEDIUM;
1101 $dont_fork = Config::get("system", "worker_dont_fork", false);
1102 $created = DateTimeFormat::utcNow();
1103 $force_priority = false;
1105 $run_parameter = array_shift($args);
1107 if (is_int($run_parameter)) {
1108 $priority = $run_parameter;
1109 } elseif (is_array($run_parameter)) {
1110 if (isset($run_parameter['priority'])) {
1111 $priority = $run_parameter['priority'];
1113 if (isset($run_parameter['created'])) {
1114 $created = $run_parameter['created'];
1116 if (isset($run_parameter['dont_fork'])) {
1117 $dont_fork = $run_parameter['dont_fork'];
1119 if (isset($run_parameter['force_priority'])) {
1120 $force_priority = $run_parameter['force_priority'];
1124 $parameters = json_encode($args);
1125 $found = DBA::exists('workerqueue', ['parameter' => $parameters, 'done' => false]);
1127 // Quit if there was a database error - a precaution for the update process to 3.5.3
1128 if (DBA::errorNo() != 0) {
1133 DBA::insert('workerqueue', ['parameter' => $parameters, 'created' => $created, 'priority' => $priority]);
1134 } elseif ($force_priority) {
1135 DBA::update('workerqueue', ['priority' => $priority], ['parameter' => $parameters, 'done' => false, 'pid' => 0]);
1138 // Should we quit and wait for the worker to be called as a cronjob?
1143 // If there is a lock then we don't have to check for too much worker
1144 if (!Lock::acquire('worker', 0)) {
1148 // If there are already enough workers running, don't fork another one
1149 $quit = self::tooMuchWorkers();
1150 Lock::release('worker');
1156 // We tell the daemon that a new job entry exists
1157 if (Config::get('system', 'worker_daemon_mode', false)) {
1158 // We don't have to set the IPC flag - this is done in "tooMuchWorkers"
1162 // Now call the worker to execute the jobs that we just added to the queue
1163 self::spawnWorker();
1169 * Defers the current worker entry
1171 public static function defer()
1173 if (empty(BaseObject::getApp()->queue)) {
1177 $queue = BaseObject::getApp()->queue;
1179 $retrial = $queue['retrial'];
1181 $priority = $queue['priority'];
1183 if ($retrial > 14) {
1184 Logger::log('Id ' . $id . ' had been tried 14 times. We stop now.', Logger::DEBUG);
1188 // Calculate the delay until the next trial
1189 $delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
1190 $next = DateTimeFormat::utc('now + ' . $delay . ' seconds');
1192 if (($priority < PRIORITY_MEDIUM) && ($retrial > 2)) {
1193 $priority = PRIORITY_MEDIUM;
1194 } elseif (($priority < PRIORITY_LOW) && ($retrial > 5)) {
1195 $priority = PRIORITY_LOW;
1196 } elseif (($priority < PRIORITY_NEGLIGIBLE) && ($retrial > 7)) {
1197 $priority = PRIORITY_NEGLIGIBLE;
1200 Logger::log('Defer execution ' . $retrial . ' of id ' . $id . ' to ' . $next . ' - priority old/new: ' . $queue['priority'] . '/' . $priority, Logger::DEBUG);
1202 $stamp = (float)microtime(true);
1203 $fields = ['retrial' => $retrial + 1, 'next_try' => $next, 'executed' => DBA::NULL_DATETIME, 'pid' => 0, 'priority' => $priority];
1204 DBA::update('workerqueue', $fields, ['id' => $id]);
1205 self::$db_duration += (microtime(true) - $stamp);
1206 self::$db_duration_write += (microtime(true) - $stamp);
1210 * Log active processes into the "process" table
1212 * @brief Log active processes into the "process" table
1214 public static function startProcess()
1216 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1218 $command = basename($trace[0]['file']);
1220 Process::deleteInactive();
1222 Process::insert($command);
1226 * Remove the active process from the "process" table
1228 * @brief Remove the active process from the "process" table
1230 * @throws \Exception
1232 public static function endProcess()
1234 return Process::deleteByPid();
1238 * Set the flag if some job is waiting
1240 * @brief Set the flag if some job is waiting
1241 * @param boolean $jobs Is there a waiting job?
1242 * @throws \Exception
1244 public static function IPCSetJobState($jobs)
1246 $stamp = (float)microtime(true);
1247 DBA::update('worker-ipc', ['jobs' => $jobs], ['key' => 1], true);
1248 self::$db_duration += (microtime(true) - $stamp);
1249 self::$db_duration_write += (microtime(true) - $stamp);
1253 * Checks if some worker job waits to be executed
1255 * @brief Checks if some worker job waits to be executed
1257 * @throws \Exception
1259 public static function IPCJobsExists()
1261 $stamp = (float)microtime(true);
1262 $row = DBA::selectFirst('worker-ipc', ['jobs'], ['key' => 1]);
1263 self::$db_duration += (microtime(true) - $stamp);
1265 // When we don't have a row, no job is running
1266 if (!DBA::isResult($row)) {
1270 return (bool)$row['jobs'];