]> git.mxchange.org Git - friendica.git/blob - src/Core/Worker.php
Create Core\Process as a base for followup work
[friendica.git] / src / Core / Worker.php
1 <?php
2 /**
3  * @file src/Core/Worker.php
4  */
5 namespace Friendica\Core;
6
7 use Friendica\BaseObject;
8 use Friendica\Core;
9 use Friendica\Database\DBA;
10 use Friendica\Model\Process;
11 use Friendica\Util\DateTimeFormat;
12 use Friendica\Util\Network;
13
14 /**
15  * @file src/Core/Worker.php
16  *
17  * @brief Contains the class for the worker background job processing
18  */
19
20 /**
21  * @brief Worker methods
22  */
23 class Worker
24 {
25         const STATE_STARTUP    = 1; // Worker is in startup. This takes most time.
26         const STATE_LONG_LOOP  = 2; // Worker is processing the whole - long - loop.
27         const STATE_REFETCH    = 3; // Worker had refetched jobs in the execution loop.
28         const STATE_SHORT_LOOP = 4; // Worker is processing preassigned jobs, thus saving much time.
29
30         const FAST_COMMANDS = ['APDelivery', 'Delivery', 'CreateShadowEntry'];
31
32
33         private static $up_start;
34         private static $db_duration = 0;
35         private static $db_duration_count = 0;
36         private static $db_duration_write = 0;
37         private static $db_duration_stat = 0;
38         private static $lock_duration = 0;
39         private static $last_update;
40         private static $state;
41
42         /**
43          * @brief Processes the tasks that are in the workerqueue table
44          *
45          * @param boolean $run_cron Should the cron processes be executed?
46          * @return void
47          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
48          */
49         public static function processQueue($run_cron = true)
50         {
51                 $a = \get_app();
52
53                 // Ensure that all "strtotime" operations do run timezone independent
54                 date_default_timezone_set('UTC');
55
56                 self::$up_start = microtime(true);
57
58                 // At first check the maximum load. We shouldn't continue with a high load
59                 if ($a->isMaxLoadReached()) {
60                         Logger::log('Pre check: maximum load reached, quitting.', Logger::DEBUG);
61                         return;
62                 }
63
64                 // We now start the process. This is done after the load check since this could increase the load.
65                 self::startProcess();
66
67                 // Kill stale processes every 5 minutes
68                 $last_cleanup = Config::get('system', 'worker_last_cleaned', 0);
69                 if (time() > ($last_cleanup + 300)) {
70                         Config::set('system', 'worker_last_cleaned', time());
71                         self::killStaleWorkers();
72                 }
73
74                 // Count active workers and compare them with a maximum value that depends on the load
75                 if (self::tooMuchWorkers()) {
76                         Logger::log('Pre check: Active worker limit reached, quitting.', Logger::DEBUG);
77                         return;
78                 }
79
80                 // Do we have too few memory?
81                 if ($a->isMinMemoryReached()) {
82                         Logger::log('Pre check: Memory limit reached, quitting.', Logger::DEBUG);
83                         return;
84                 }
85
86                 // Possibly there are too much database connections
87                 if (self::maxConnectionsReached()) {
88                         Logger::log('Pre check: maximum connections reached, quitting.', Logger::DEBUG);
89                         return;
90                 }
91
92                 // Possibly there are too much database processes that block the system
93                 if ($a->isMaxProcessesReached()) {
94                         Logger::log('Pre check: maximum processes reached, quitting.', Logger::DEBUG);
95                         return;
96                 }
97
98                 // Now we start additional cron processes if we should do so
99                 if ($run_cron) {
100                         self::runCron();
101                 }
102
103                 $starttime = time();
104                 self::$state = self::STATE_STARTUP;
105
106                 // We fetch the next queue entry that is about to be executed
107                 while ($r = self::workerProcess()) {
108                         $refetched = false;
109                         foreach ($r as $entry) {
110                                 // Assure that the priority is an integer value
111                                 $entry['priority'] = (int)$entry['priority'];
112
113                                 // The work will be done
114                                 if (!self::execute($entry)) {
115                                         Logger::log('Process execution failed, quitting.', Logger::DEBUG);
116                                         return;
117                                 }
118
119                                 // Trying to fetch new processes - but only once when successful
120                                 if (!$refetched && Lock::acquire('worker_process', 0)) {
121                                         self::findWorkerProcesses();
122                                         Lock::release('worker_process');
123                                         self::$state = self::STATE_REFETCH;
124                                         $refetched = true;
125                                 } else {
126                                         self::$state = self::STATE_SHORT_LOOP;
127                                 }
128                         }
129
130                         // To avoid the quitting of multiple workers only one worker at a time will execute the check
131                         if (!self::getWaitingJobForPID()) {
132                                 self::$state = self::STATE_LONG_LOOP;
133
134                                 if (Lock::acquire('worker', 0)) {
135                                 // Count active workers and compare them with a maximum value that depends on the load
136                                         if (self::tooMuchWorkers()) {
137                                                 Logger::log('Active worker limit reached, quitting.', Logger::DEBUG);
138                                                 Lock::release('worker');
139                                                 return;
140                                         }
141
142                                         // Check free memory
143                                         if ($a->isMinMemoryReached()) {
144                                                 Logger::log('Memory limit reached, quitting.', Logger::DEBUG);
145                                                 Lock::release('worker');
146                                                 return;
147                                         }
148                                         Lock::release('worker');
149                                 }
150                         }
151
152                         // Quit the worker once every cron interval
153                         if (time() > ($starttime + (Config::get('system', 'cron_interval') * 60))) {
154                                 Logger::info('Process lifetime reached, respawning.');
155                                 self::spawnWorker();
156                                 return;
157                         }
158                 }
159
160                 // Cleaning up. Possibly not needed, but it doesn't harm anything.
161                 if (Config::get('system', 'worker_daemon_mode', false)) {
162                         self::IPCSetJobState(false);
163                 }
164                 Logger::log("Couldn't select a workerqueue entry, quitting process " . getmypid() . ".", Logger::DEBUG);
165         }
166
167         /**
168          * @brief Check if non executed tasks do exist in the worker queue
169          *
170          * @return boolean Returns "true" if tasks are existing
171          * @throws \Exception
172          */
173         private static function entriesExists()
174         {
175                 $stamp = (float)microtime(true);
176                 $exists = DBA::exists('workerqueue', ["NOT `done` AND `pid` = 0 AND `next_try` < ?", DateTimeFormat::utcNow()]);
177                 self::$db_duration += (microtime(true) - $stamp);
178                 return $exists;
179         }
180
181         /**
182          * @brief Returns the number of deferred entries in the worker queue
183          *
184          * @return integer Number of deferred entries in the worker queue
185          * @throws \Exception
186          */
187         private static function deferredEntries()
188         {
189                 $stamp = (float)microtime(true);
190                 $count = DBA::count('workerqueue', ["NOT `done` AND `pid` = 0 AND `retrial` > ?", 0]);
191                 self::$db_duration += (microtime(true) - $stamp);
192                 self::$db_duration_count += (microtime(true) - $stamp);
193                 return $count;
194         }
195
196         /**
197          * @brief Returns the number of non executed entries in the worker queue
198          *
199          * @return integer Number of non executed entries in the worker queue
200          * @throws \Exception
201          */
202         private static function totalEntries()
203         {
204                 $stamp = (float)microtime(true);
205                 $count = DBA::count('workerqueue', ['done' => false, 'pid' => 0]);
206                 self::$db_duration += (microtime(true) - $stamp);
207                 self::$db_duration_count += (microtime(true) - $stamp);
208                 return $count;
209         }
210
211         /**
212          * @brief Returns the highest priority in the worker queue that isn't executed
213          *
214          * @return integer Number of active worker processes
215          * @throws \Exception
216          */
217         private static function highestPriority()
218         {
219                 $stamp = (float)microtime(true);
220                 $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
221                 $workerqueue = DBA::selectFirst('workerqueue', ['priority'], $condition, ['order' => ['priority']]);
222                 self::$db_duration += (microtime(true) - $stamp);
223                 if (DBA::isResult($workerqueue)) {
224                         return $workerqueue["priority"];
225                 } else {
226                         return 0;
227                 }
228         }
229
230         /**
231          * @brief Returns if a process with the given priority is running
232          *
233          * @param integer $priority The priority that should be checked
234          *
235          * @return integer Is there a process running with that priority?
236          * @throws \Exception
237          */
238         private static function processWithPriorityActive($priority)
239         {
240                 $condition = ["`priority` <= ? AND `pid` != 0 AND NOT `done`", $priority];
241                 return DBA::exists('workerqueue', $condition);
242         }
243
244         /**
245          * @brief Execute a worker entry
246          *
247          * @param array $queue Workerqueue entry
248          *
249          * @return boolean "true" if further processing should be stopped
250          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
251          */
252         public static function execute($queue)
253         {
254                 $a = \get_app();
255
256                 $mypid = getmypid();
257
258                 // Quit when in maintenance
259                 if (Config::get('system', 'maintenance', false, true)) {
260                         Logger::log("Maintenance mode - quit process ".$mypid, Logger::DEBUG);
261                         return false;
262                 }
263
264                 // Constantly check the number of parallel database processes
265                 if ($a->isMaxProcessesReached()) {
266                         Logger::log("Max processes reached for process ".$mypid, Logger::DEBUG);
267                         return false;
268                 }
269
270                 // Constantly check the number of available database connections to let the frontend be accessible at any time
271                 if (self::maxConnectionsReached()) {
272                         Logger::log("Max connection reached for process ".$mypid, Logger::DEBUG);
273                         return false;
274                 }
275
276                 $argv = json_decode($queue["parameter"], true);
277
278                 // Check for existance and validity of the include file
279                 $include = $argv[0];
280
281                 if (method_exists(sprintf('Friendica\Worker\%s', $include), 'execute')) {
282                         // We constantly update the "executed" date every minute to avoid being killed too soon
283                         if (!isset(self::$last_update)) {
284                                 self::$last_update = strtotime($queue["executed"]);
285                         }
286
287                         $age = (time() - self::$last_update) / 60;
288                         self::$last_update = time();
289
290                         if ($age > 1) {
291                                 $stamp = (float)microtime(true);
292                                 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
293                                 self::$db_duration += (microtime(true) - $stamp);
294                                 self::$db_duration_write += (microtime(true) - $stamp);
295                         }
296
297                         array_shift($argv);
298
299                         self::execFunction($queue, $include, $argv, true);
300
301                         $stamp = (float)microtime(true);
302                         $condition = ["`id` = ? AND `next_try` < ?", $queue['id'], DateTimeFormat::utcNow()];
303                         if (DBA::update('workerqueue', ['done' => true], $condition)) {
304                                 Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
305                         }
306                         self::$db_duration = (microtime(true) - $stamp);
307                         self::$db_duration_write += (microtime(true) - $stamp);
308
309                         return true;
310                 }
311
312                 // The script could be provided as full path or only with the function name
313                 if ($include == basename($include)) {
314                         $include = "include/".$include.".php";
315                 }
316
317                 if (!validate_include($include)) {
318                         Logger::log("Include file ".$argv[0]." is not valid!");
319                         $stamp = (float)microtime(true);
320                         DBA::delete('workerqueue', ['id' => $queue["id"]]);
321                         self::$db_duration = (microtime(true) - $stamp);
322                         self::$db_duration_write += (microtime(true) - $stamp);
323                         return true;
324                 }
325
326                 require_once $include;
327
328                 $funcname = str_replace(".php", "", basename($argv[0]))."_run";
329
330                 if (function_exists($funcname)) {
331                         // We constantly update the "executed" date every minute to avoid being killed too soon
332                         if (!isset(self::$last_update)) {
333                                 self::$last_update = strtotime($queue["executed"]);
334                         }
335
336                         $age = (time() - self::$last_update) / 60;
337                         self::$last_update = time();
338
339                         if ($age > 1) {
340                                 $stamp = (float)microtime(true);
341                                 DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow()], ['pid' => $mypid, 'done' => false]);
342                                 self::$db_duration += (microtime(true) - $stamp);
343                                 self::$db_duration_write += (microtime(true) - $stamp);
344                         }
345
346                         self::execFunction($queue, $funcname, $argv, false);
347
348                         $stamp = (float)microtime(true);
349                         if (DBA::update('workerqueue', ['done' => true], ['id' => $queue["id"]])) {
350                                 Config::set('system', 'last_worker_execution', DateTimeFormat::utcNow());
351                         }
352                         self::$db_duration = (microtime(true) - $stamp);
353                         self::$db_duration_write += (microtime(true) - $stamp);
354                 } else {
355                         Logger::log("Function ".$funcname." does not exist");
356                         $stamp = (float)microtime(true);
357                         DBA::delete('workerqueue', ['id' => $queue["id"]]);
358                         self::$db_duration = (microtime(true) - $stamp);
359                         self::$db_duration_write += (microtime(true) - $stamp);
360                 }
361
362                 return true;
363         }
364
365         /**
366          * @brief Execute a function from the queue
367          *
368          * @param array   $queue       Workerqueue entry
369          * @param string  $funcname    name of the function
370          * @param array   $argv        Array of values to be passed to the function
371          * @param boolean $method_call boolean
372          * @return void
373          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
374          */
375         private static function execFunction($queue, $funcname, $argv, $method_call)
376         {
377                 $a = \get_app();
378
379                 $argc = count($argv);
380
381                 Logger::enableWorker($funcname);
382
383                 Logger::info("Process start.", ['priority' => $queue["priority"], 'id' => $queue["id"]]);
384
385                 $stamp = (float)microtime(true);
386
387                 // We use the callstack here to analyze the performance of executed worker entries.
388                 // For this reason the variables have to be initialized.
389                 $a->getProfiler()->reset();
390
391                 $a->queue = $queue;
392
393                 $up_duration = microtime(true) - self::$up_start;
394
395                 // Reset global data to avoid interferences
396                 unset($_SESSION);
397
398                 // Set the workerLogger as new default logger
399                 if ($method_call) {
400                         call_user_func_array(sprintf('Friendica\Worker\%s::execute', $funcname), $argv);
401                 } else {
402                         $funcname($argv, $argc);
403                 }
404
405                 Logger::disableWorker();
406
407                 unset($a->queue);
408
409                 $duration = (microtime(true) - $stamp);
410
411                 /* With these values we can analyze how effective the worker is.
412                  * The database and rest time should be low since this is the unproductive time.
413                  * The execution time is the productive time.
414                  * By changing parameters like the maximum number of workers we can check the effectivness.
415                 */
416                 $dbtotal = round(self::$db_duration, 2);
417                 $dbread  = round(self::$db_duration - (self::$db_duration_count + self::$db_duration_write + self::$db_duration_stat), 2);
418                 $dbcount = round(self::$db_duration_count, 2);
419                 $dbstat  = round(self::$db_duration_stat, 2);
420                 $dbwrite = round(self::$db_duration_write, 2);
421                 $dblock  = round(self::$lock_duration, 2);
422                 $rest    = round(max(0, $up_duration - (self::$db_duration + self::$lock_duration)), 2);
423                 $exec    = round($duration, 2);
424
425                 Logger::info('Performance:', ['state' => self::$state, 'count' => $dbcount, 'stat' => $dbstat, 'write' => $dbwrite, 'lock' => $dblock, 'total' => $dbtotal, 'rest' => $rest, 'exec' => $exec]);
426
427                 self::$up_start = microtime(true);
428                 self::$db_duration = 0;
429                 self::$db_duration_count = 0;
430                 self::$db_duration_stat = 0;
431                 self::$db_duration_write = 0;
432                 self::$lock_duration = 0;
433
434                 if ($duration > 3600) {
435                         Logger::info('Longer than 1 hour.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
436                 } elseif ($duration > 600) {
437                         Logger::info('Longer than 10 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
438                 } elseif ($duration > 300) {
439                         Logger::info('Longer than 5 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
440                 } elseif ($duration > 120) {
441                         Logger::info('Longer than 2 minutes.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration/60, 3)]);
442                 }
443
444                 Logger::info('Process done.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration, 3)]);
445
446                 $a->getProfiler()->saveLog($a->getLogger(), "ID " . $queue["id"] . ": " . $funcname);
447
448                 $cooldown = Config::get("system", "worker_cooldown", 0);
449
450                 if ($cooldown > 0) {
451                         Logger::info('Cooldown.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'cooldown' => $cooldown]);
452                         sleep($cooldown);
453                 }
454         }
455
456         /**
457          * @brief Checks if the number of database connections has reached a critical limit.
458          *
459          * @return bool Are more than 3/4 of the maximum connections used?
460          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
461          */
462         private static function maxConnectionsReached()
463         {
464                 // Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself.
465                 $max = Config::get("system", "max_connections");
466
467                 // Fetch the percentage level where the worker will get active
468                 $maxlevel = Config::get("system", "max_connections_level", 75);
469
470                 if ($max == 0) {
471                         // the maximum number of possible user connections can be a system variable
472                         $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'");
473                         if (DBA::isResult($r)) {
474                                 $max = $r["Value"];
475                         }
476                         // Or it can be granted. This overrides the system variable
477                         $stamp = (float)microtime(true);
478                         $r = DBA::p('SHOW GRANTS');
479                         self::$db_duration += (microtime(true) - $stamp);
480                         while ($grants = DBA::fetch($r)) {
481                                 $grant = array_pop($grants);
482                                 if (stristr($grant, "GRANT USAGE ON")) {
483                                         if (preg_match("/WITH MAX_USER_CONNECTIONS (\d*)/", $grant, $match)) {
484                                                 $max = $match[1];
485                                         }
486                                 }
487                         }
488                         DBA::close($r);
489                 }
490
491                 // If $max is set we will use the processlist to determine the current number of connections
492                 // The processlist only shows entries of the current user
493                 if ($max != 0) {
494                         $stamp = (float)microtime(true);
495                         $r = DBA::p('SHOW PROCESSLIST');
496                         self::$db_duration += (microtime(true) - $stamp);
497                         $used = DBA::numRows($r);
498                         DBA::close($r);
499
500                         Logger::log("Connection usage (user values): ".$used."/".$max, Logger::DEBUG);
501
502                         $level = ($used / $max) * 100;
503
504                         if ($level >= $maxlevel) {
505                                 Logger::log("Maximum level (".$maxlevel."%) of user connections reached: ".$used."/".$max);
506                                 return true;
507                         }
508                 }
509
510                 // We will now check for the system values.
511                 // This limit could be reached although the user limits are fine.
512                 $r = DBA::fetchFirst("SHOW VARIABLES WHERE `variable_name` = 'max_connections'");
513                 if (!DBA::isResult($r)) {
514                         return false;
515                 }
516                 $max = intval($r["Value"]);
517                 if ($max == 0) {
518                         return false;
519                 }
520                 $r = DBA::fetchFirst("SHOW STATUS WHERE `variable_name` = 'Threads_connected'");
521                 if (!DBA::isResult($r)) {
522                         return false;
523                 }
524                 $used = intval($r["Value"]);
525                 if ($used == 0) {
526                         return false;
527                 }
528                 Logger::log("Connection usage (system values): ".$used."/".$max, Logger::DEBUG);
529
530                 $level = $used / $max * 100;
531
532                 if ($level < $maxlevel) {
533                         return false;
534                 }
535                 Logger::log("Maximum level (".$level."%) of system connections reached: ".$used."/".$max);
536                 return true;
537         }
538
539         /**
540          * @brief fix the queue entry if the worker process died
541          * @return void
542          * @throws \Exception
543          */
544         private static function killStaleWorkers()
545         {
546                 $stamp = (float)microtime(true);
547                 $entries = DBA::select(
548                         'workerqueue',
549                         ['id', 'pid', 'executed', 'priority', 'parameter'],
550                         ['NOT `done` AND `pid` != 0'],
551                         ['order' => ['priority', 'created']]
552                 );
553                 self::$db_duration += (microtime(true) - $stamp);
554
555                 while ($entry = DBA::fetch($entries)) {
556                         if (!posix_kill($entry["pid"], 0)) {
557                                 $stamp = (float)microtime(true);
558                                 DBA::update(
559                                         'workerqueue',
560                                         ['executed' => DBA::NULL_DATETIME, 'pid' => 0],
561                                         ['id' => $entry["id"]]
562                                 );
563                                 self::$db_duration += (microtime(true) - $stamp);
564                                 self::$db_duration_write += (microtime(true) - $stamp);
565                         } else {
566                                 // Kill long running processes
567                                 // Check if the priority is in a valid range
568                                 if (!in_array($entry["priority"], [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE])) {
569                                         $entry["priority"] = PRIORITY_MEDIUM;
570                                 }
571
572                                 // Define the maximum durations
573                                 $max_duration_defaults = [PRIORITY_CRITICAL => 720, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 720];
574                                 $max_duration = $max_duration_defaults[$entry["priority"]];
575
576                                 $argv = json_decode($entry["parameter"], true);
577                                 $argv[0] = basename($argv[0]);
578
579                                 // How long is the process already running?
580                                 $duration = (time() - strtotime($entry["executed"])) / 60;
581                                 if ($duration > $max_duration) {
582                                         Logger::log("Worker process ".$entry["pid"]." (".substr(json_encode($argv), 0, 50).") took more than ".$max_duration." minutes. It will be killed now.");
583                                         posix_kill($entry["pid"], SIGTERM);
584
585                                         // We killed the stale process.
586                                         // To avoid a blocking situation we reschedule the process at the beginning of the queue.
587                                         // Additionally we are lowering the priority. (But not PRIORITY_CRITICAL)
588                                         $new_priority = $entry["priority"];
589                                         if ($entry["priority"] == PRIORITY_HIGH) {
590                                                 $new_priority = PRIORITY_MEDIUM;
591                                         } elseif ($entry["priority"] == PRIORITY_MEDIUM) {
592                                                 $new_priority = PRIORITY_LOW;
593                                         } elseif ($entry["priority"] != PRIORITY_CRITICAL) {
594                                                 $new_priority = PRIORITY_NEGLIGIBLE;
595                                         }
596                                         $stamp = (float)microtime(true);
597                                         DBA::update(
598                                                 'workerqueue',
599                                                 ['executed' => DBA::NULL_DATETIME, 'created' => DateTimeFormat::utcNow(), 'priority' => $new_priority, 'pid' => 0],
600                                                 ['id' => $entry["id"]]
601                                         );
602                                         self::$db_duration += (microtime(true) - $stamp);
603                                         self::$db_duration_write += (microtime(true) - $stamp);
604                                 } else {
605                                         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);
606                                 }
607                         }
608                 }
609         }
610
611         /**
612          * @brief Checks if the number of active workers exceeds the given limits
613          *
614          * @return bool Are there too much workers running?
615          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
616          */
617         private static function tooMuchWorkers()
618         {
619                 $queues = Config::get("system", "worker_queues", 10);
620
621                 $maxqueues = $queues;
622
623                 $active = self::activeWorkers();
624
625                 // Decrease the number of workers at higher load
626                 $load = System::currentLoad();
627                 if ($load) {
628                         $maxsysload = intval(Config::get("system", "maxloadavg", 20));
629
630                         /* Default exponent 3 causes queues to rapidly decrease as load increases.
631                          * If you have 20 max queues at idle, then you get only 5 queues at 37.1% of $maxsysload.
632                          * For some environments, this rapid decrease is not needed.
633                          * With exponent 1, you could have 20 max queues at idle and 13 at 37% of $maxsysload.
634                          */
635                         $exponent = intval(Config::get('system', 'worker_load_exponent', 3));
636                         $slope = pow(max(0, $maxsysload - $load) / $maxsysload, $exponent);
637                         $queues = intval(ceil($slope * $maxqueues));
638
639                         $processlist = '';
640
641                         if (Config::get('system', 'worker_jpm')) {
642                                 $intervals = explode(',', Config::get('system', 'worker_jpm_range'));
643                                 $jobs_per_minute = [];
644                                 foreach ($intervals as $interval) {
645                                         if ($interval == 0) {
646                                                 continue;
647                                         } else {
648                                                 $interval = (int)$interval;
649                                         }
650
651                                         $stamp = (float)microtime(true);
652                                         $jobs = DBA::p("SELECT COUNT(*) AS `jobs` FROM `workerqueue` WHERE `done` AND `executed` > UTC_TIMESTAMP() - INTERVAL ? MINUTE", $interval);
653                                         self::$db_duration += (microtime(true) - $stamp);
654                                         self::$db_duration_stat += (microtime(true) - $stamp);
655                                         if ($job = DBA::fetch($jobs)) {
656                                                 $jobs_per_minute[$interval] = number_format($job['jobs'] / $interval, 0);
657                                         }
658                                         DBA::close($jobs);
659                                 }
660                                 $processlist = ' - jpm: '.implode('/', $jobs_per_minute);
661                         }
662
663                         // Create a list of queue entries grouped by their priority
664                         $listitem = [0 => ''];
665
666                         $idle_workers = $active;
667
668                         $deferred = self::deferredEntries();
669
670                         if (Config::get('system', 'worker_debug')) {
671                                 $waiting_processes = 0;
672                                 // Now adding all processes with workerqueue entries
673                                 $stamp = (float)microtime(true);
674                                 $jobs = DBA::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` WHERE NOT `done` AND `next_try` < ? GROUP BY `priority`", DateTimeFormat::utcNow());
675                                 self::$db_duration += (microtime(true) - $stamp);
676                                 self::$db_duration_stat += (microtime(true) - $stamp);
677                                 while ($entry = DBA::fetch($jobs)) {
678                                         $stamp = (float)microtime(true);
679                                         $processes = DBA::p("SELECT COUNT(*) AS `running` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE NOT `done` AND `priority` = ?", $entry["priority"]);
680                                         self::$db_duration += (microtime(true) - $stamp);
681                                         self::$db_duration_stat += (microtime(true) - $stamp);
682                                         if ($process = DBA::fetch($processes)) {
683                                                 $idle_workers -= $process["running"];
684                                                 $waiting_processes += $entry["entries"];
685                                                 $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"];
686                                         }
687                                         DBA::close($processes);
688                                 }
689                                 DBA::close($jobs);
690                         } else {
691                                 $waiting_processes =  self::totalEntries();
692                                 $stamp = (float)microtime(true);
693                                 $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`");
694                                 self::$db_duration += (microtime(true) - $stamp);
695                                 self::$db_duration_stat += (microtime(true) - $stamp);
696
697                                 while ($entry = DBA::fetch($jobs)) {
698                                         $idle_workers -= $entry["running"];
699                                         $listitem[$entry["priority"]] = $entry["priority"].":".$entry["running"];
700                                 }
701                                 DBA::close($jobs);
702                         }
703
704                         $listitem[0] = "0:" . max(0, $idle_workers);
705
706                         $processlist .= ' ('.implode(', ', $listitem).')';
707
708                         if (Config::get("system", "worker_fastlane", false) && ($queues > 0) && ($active >= $queues) && self::entriesExists()) {
709                                 $top_priority = self::highestPriority();
710                                 $high_running = self::processWithPriorityActive($top_priority);
711
712                                 if (!$high_running && ($top_priority > PRIORITY_UNDEFINED) && ($top_priority < PRIORITY_NEGLIGIBLE)) {
713                                         Logger::log("There are jobs with priority ".$top_priority." waiting but none is executed. Open a fastlane.", Logger::DEBUG);
714                                         $queues = $active + 1;
715                                 }
716                         }
717
718                         Logger::log("Load: " . $load ."/" . $maxsysload . " - processes: " . $deferred . "/" . $active . "/" . $waiting_processes . $processlist . " - maximum: " . $queues . "/" . $maxqueues, Logger::DEBUG);
719
720                         // Are there fewer workers running as possible? Then fork a new one.
721                         if (!Config::get("system", "worker_dont_fork", false) && ($queues > ($active + 1)) && self::entriesExists()) {
722                                 Logger::log("Active workers: ".$active."/".$queues." Fork a new worker.", Logger::DEBUG);
723                                 if (Config::get('system', 'worker_daemon_mode', false)) {
724                                         self::IPCSetJobState(true);
725                                 } else {
726                                         self::spawnWorker();
727                                 }
728                         }
729                 }
730
731                 // if there are too much worker, we don't spawn a new one.
732                 if (Config::get('system', 'worker_daemon_mode', false) && ($active > $queues)) {
733                         self::IPCSetJobState(false);
734                 }
735
736                 return $active > $queues;
737         }
738
739         /**
740          * @brief Returns the number of active worker processes
741          *
742          * @return integer Number of active worker processes
743          * @throws \Exception
744          */
745         private static function activeWorkers()
746         {
747                 $stamp = (float)microtime(true);
748                 $count = DBA::count('process', ['command' => 'Worker.php']);
749                 self::$db_duration += (microtime(true) - $stamp);
750                 return $count;
751         }
752
753         /**
754          * @brief Returns waiting jobs for the current process id
755          *
756          * @return array waiting workerqueue jobs
757          * @throws \Exception
758          */
759         private static function getWaitingJobForPID()
760         {
761                 $stamp = (float)microtime(true);
762                 $r = DBA::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
763                 self::$db_duration += (microtime(true) - $stamp);
764                 if (DBA::isResult($r)) {
765                         return DBA::toArray($r);
766                 }
767                 DBA::close($r);
768
769                 return false;
770         }
771
772         /**
773          * @brief Returns the next jobs that should be executed
774          *
775          * @return array array with next jobs
776          * @throws \Exception
777          */
778         private static function nextProcess()
779         {
780                 $priority = self::nextPriority();
781                 if (empty($priority)) {
782                         Logger::info('No tasks found');
783                         return [];
784                 }
785
786                 $limit = Config::get('system', 'worker_fetch_limit', 1);
787
788                 $ids = [];
789                 $stamp = (float)microtime(true);
790                 $condition = ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()];
791                 $tasks = DBA::select('workerqueue', ['id', 'parameter'], $condition, ['limit' => $limit, 'order' => ['created']]);
792                 self::$db_duration += (microtime(true) - $stamp);
793                 while ($task = DBA::fetch($tasks)) {
794                         $ids[] = $task['id'];
795                         // Only continue that loop while we are storing commands that can be processed quickly
796                         $command = json_decode($task['parameter'])[0];
797                         if (!in_array($command, self::FAST_COMMANDS)) {
798                                 break;
799                         }
800                 }
801                 DBA::close($tasks);
802
803                 Logger::info('Found:', ['priority' => $priority, 'id' => $ids]);
804                 return $ids;
805         }
806
807         /**
808          * @brief Returns the priority of the next workerqueue job
809          *
810          * @return string priority
811          * @throws \Exception
812          */
813         private static function nextPriority()
814         {
815                 $waiting = [];
816                 $priorities = [PRIORITY_CRITICAL, PRIORITY_HIGH, PRIORITY_MEDIUM, PRIORITY_LOW, PRIORITY_NEGLIGIBLE];
817                 foreach ($priorities as $priority) {
818                         $stamp = (float)microtime(true);
819                         if (DBA::exists('workerqueue', ["`priority` = ? AND `pid` = 0 AND NOT `done` AND `next_try` < ?", $priority, DateTimeFormat::utcNow()])) {
820                                 $waiting[$priority] = true;
821                         }
822                         self::$db_duration += (microtime(true) - $stamp);
823                 }
824
825                 if (!empty($waiting[PRIORITY_CRITICAL])) {
826                         return PRIORITY_CRITICAL;
827                 }
828
829                 $running = [];
830                 $running_total = 0;
831                 $stamp = (float)microtime(true);
832                 $processes = DBA::p("SELECT COUNT(DISTINCT(`process`.`pid`)) AS `running`, `priority` FROM `process`
833                         INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
834                         WHERE NOT `done` GROUP BY `priority`");
835                 self::$db_duration += (microtime(true) - $stamp);
836                 while ($process = DBA::fetch($processes)) {
837                         $running[$process['priority']] = $process['running'];
838                         $running_total += $process['running'];
839                 }
840                 DBA::close($processes);
841
842                 foreach ($priorities as $priority) {
843                         if (!empty($waiting[$priority]) && empty($running[$priority])) {
844                                 Logger::info('No running worker found with priority {priority} - assigning it.', ['priority' => $priority]);
845                                 return $priority;
846                         }
847                 }
848
849                 $active = max(self::activeWorkers(), $running_total);
850                 $priorities = max(count($waiting), count($running));
851                 $exponent = 2;
852
853                 $total = 0;
854                 for ($i = 1; $i <= $priorities; ++$i) {
855                         $total += pow($i, $exponent);
856                 }
857
858                 $limit = [];
859                 for ($i = 1; $i <= $priorities; ++$i) {
860                         $limit[$priorities - $i] = max(1, round($active * (pow($i, $exponent) / $total)));
861                 }
862
863                 $i = 0;
864                 foreach ($running as $priority => $workers) {
865                         if ($workers < $limit[$i++]) {
866                                 Logger::info('Priority {priority} has got {workers} workers out of a limit of {limit}', ['priority' => $priority, 'workers' => $workers, 'limit' => $limit[$i - 1]]);
867                                 return $priority;
868                         }
869                 }
870
871                 if (!empty($waiting)) {
872                         $priority = array_keys($waiting)[0];
873                         Logger::info('No underassigned priority found, now taking the highest priority.', ['priority' => $priority]);
874                         return $priority;
875                 }
876
877                 return false;
878         }
879
880         /**
881          * @brief Find and claim the next worker process for us
882          *
883          * @return boolean Have we found something?
884          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
885          */
886         private static function findWorkerProcesses()
887         {
888                 $mypid = getmypid();
889
890                 $ids = self::nextProcess();
891
892                 // If there is no result we check without priority limit
893                 if (empty($ids)) {
894                         $limit = Config::get('system', 'worker_fetch_limit', 1);
895
896                         $stamp = (float)microtime(true);
897                         $condition = ["`pid` = 0 AND NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
898                         $tasks = DBA::select('workerqueue', ['id', 'parameter'], $condition, ['limit' => $limit, 'order' => ['priority', 'created']]);
899                         self::$db_duration += (microtime(true) - $stamp);
900
901                         while ($task = DBA::fetch($tasks)) {
902                                 $ids[] = $task['id'];
903                                 // Only continue that loop while we are storing commands that can be processed quickly
904                                 $command = json_decode($task['parameter'])[0];
905                                 if (!in_array($command, self::FAST_COMMANDS)) {
906                                         break;
907                                 }
908                         }
909                         DBA::close($tasks);
910                 }
911
912                 if (!empty($ids)) {
913                         $stamp = (float)microtime(true);
914                         $condition = ['id' => $ids, 'done' => false, 'pid' => 0];
915                         DBA::update('workerqueue', ['executed' => DateTimeFormat::utcNow(), 'pid' => $mypid], $condition);
916                         self::$db_duration += (microtime(true) - $stamp);
917                         self::$db_duration_write += (microtime(true) - $stamp);
918                 }
919
920                 return !empty($ids);
921         }
922
923         /**
924          * @brief Returns the next worker process
925          *
926          * @return string SQL statement
927          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
928          */
929         public static function workerProcess()
930         {
931                 // There can already be jobs for us in the queue.
932                 $waiting = self::getWaitingJobForPID();
933                 if (!empty($waiting)) {
934                         return $waiting;
935                 }
936
937                 $stamp = (float)microtime(true);
938                 if (!Lock::acquire('worker_process')) {
939                         return false;
940                 }
941                 self::$lock_duration += (microtime(true) - $stamp);
942
943                 $found = self::findWorkerProcesses();
944
945                 Lock::release('worker_process');
946
947                 if ($found) {
948                         $stamp = (float)microtime(true);
949                         $r = DBA::select('workerqueue', [], ['pid' => getmypid(), 'done' => false]);
950                         self::$db_duration += (microtime(true) - $stamp);
951                         return DBA::toArray($r);
952                 }
953                 return false;
954         }
955
956         /**
957          * @brief Removes a workerqueue entry from the current process
958          * @return void
959          * @throws \Exception
960          */
961         public static function unclaimProcess()
962         {
963                 $mypid = getmypid();
964
965                 $stamp = (float)microtime(true);
966                 DBA::update('workerqueue', ['executed' => DBA::NULL_DATETIME, 'pid' => 0], ['pid' => $mypid, 'done' => false]);
967                 self::$db_duration += (microtime(true) - $stamp);
968                 self::$db_duration_write += (microtime(true) - $stamp);
969         }
970
971         /**
972          * @brief Call the front end worker
973          * @return void
974          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
975          */
976         public static function callWorker()
977         {
978                 if (!Config::get("system", "frontend_worker")) {
979                         return;
980                 }
981
982                 $url = System::baseUrl()."/worker";
983                 Network::fetchUrl($url, false, 1);
984         }
985
986         /**
987          * @brief Call the front end worker if there aren't any active
988          * @return void
989          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
990          */
991         public static function executeIfIdle()
992         {
993                 if (!Config::get("system", "frontend_worker")) {
994                         return;
995                 }
996
997                 // Do we have "proc_open"? Then we can fork the worker
998                 if (function_exists("proc_open")) {
999                         // When was the last time that we called the worker?
1000                         // Less than one minute? Then we quit
1001                         if ((time() - Config::get("system", "worker_started")) < 60) {
1002                                 return;
1003                         }
1004
1005                         Config::set("system", "worker_started", time());
1006
1007                         // Do we have enough running workers? Then we quit here.
1008                         if (self::tooMuchWorkers()) {
1009                                 // Cleaning dead processes
1010                                 self::killStaleWorkers();
1011                                 Process::deleteInactive();
1012
1013                                 return;
1014                         }
1015
1016                         self::runCron();
1017
1018                         Logger::log('Call worker', Logger::DEBUG);
1019                         self::spawnWorker();
1020                         return;
1021                 }
1022
1023                 // We cannot execute background processes.
1024                 // We now run the processes from the frontend.
1025                 // This won't work with long running processes.
1026                 self::runCron();
1027
1028                 self::clearProcesses();
1029
1030                 $workers = self::activeWorkers();
1031
1032                 if ($workers == 0) {
1033                         self::callWorker();
1034                 }
1035         }
1036
1037         /**
1038          * @brief Removes long running worker processes
1039          * @return void
1040          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1041          */
1042         public static function clearProcesses()
1043         {
1044                 $timeout = Config::get("system", "frontend_worker_timeout", 10);
1045
1046                 /// @todo We should clean up the corresponding workerqueue entries as well
1047                 $stamp = (float)microtime(true);
1048                 $condition = ["`created` < ? AND `command` = 'worker.php'",
1049                                 DateTimeFormat::utc("now - ".$timeout." minutes")];
1050                 DBA::delete('process', $condition);
1051                 self::$db_duration = (microtime(true) - $stamp);
1052                 self::$db_duration_write += (microtime(true) - $stamp);
1053         }
1054
1055         /**
1056          * @brief Runs the cron processes
1057          * @return void
1058          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1059          */
1060         private static function runCron()
1061         {
1062                 Logger::log('Add cron entries', Logger::DEBUG);
1063
1064                 // Check for spooled items
1065                 self::add(['priority' => PRIORITY_HIGH, 'force_priority' => true], 'SpoolPost');
1066
1067                 // Run the cron job that calls all other jobs
1068                 self::add(['priority' => PRIORITY_MEDIUM, 'force_priority' => true], 'Cron');
1069
1070                 // Cleaning dead processes
1071                 self::killStaleWorkers();
1072         }
1073
1074         /**
1075          * @brief Spawns a new worker
1076          * @param bool $do_cron
1077          * @return void
1078          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1079          */
1080         public static function spawnWorker($do_cron = false)
1081         {
1082                 $command = 'bin/worker.php';
1083
1084                 $args = ['no_cron' => !$do_cron];
1085
1086                 $a = get_app();
1087                 $process = new Core\Process($a->getLogger(), $a->getMode(), $a->getConfig(), $a->getBasePath());
1088                 $process->run($command, $args);
1089
1090                 // after spawning we have to remove the flag.
1091                 if (Config::get('system', 'worker_daemon_mode', false)) {
1092                         self::IPCSetJobState(false);
1093                 }
1094         }
1095
1096         /**
1097          * @brief Adds tasks to the worker queue
1098          *
1099          * @param (integer|array) priority or parameter array, strings are deprecated and are ignored
1100          *
1101          * next args are passed as $cmd command line
1102          * or: Worker::add(PRIORITY_HIGH, "Notifier", Delivery::DELETION, $drop_id);
1103          * or: Worker::add(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), "CreateShadowEntry", $post_id);
1104          *
1105          * @return boolean "false" if proc_run couldn't be executed
1106          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1107          * @note $cmd and string args are surrounded with ""
1108          *
1109          * @hooks 'proc_run'
1110          *    array $arr
1111          *
1112          */
1113         public static function add($cmd)
1114         {
1115                 $args = func_get_args();
1116
1117                 if (!count($args)) {
1118                         return false;
1119                 }
1120
1121                 $arr = ['args' => $args, 'run_cmd' => true];
1122
1123                 Hook::callAll("proc_run", $arr);
1124                 if (!$arr['run_cmd'] || !count($args)) {
1125                         return true;
1126                 }
1127
1128                 $priority = PRIORITY_MEDIUM;
1129                 // Don't fork from frontend tasks by default
1130                 $dont_fork = Config::get("system", "worker_dont_fork", false) || !\get_app()->getMode()->isBackend();
1131                 $created = DateTimeFormat::utcNow();
1132                 $force_priority = false;
1133
1134                 $run_parameter = array_shift($args);
1135
1136                 if (is_int($run_parameter)) {
1137                         $priority = $run_parameter;
1138                 } elseif (is_array($run_parameter)) {
1139                         if (isset($run_parameter['priority'])) {
1140                                 $priority = $run_parameter['priority'];
1141                         }
1142                         if (isset($run_parameter['created'])) {
1143                                 $created = $run_parameter['created'];
1144                         }
1145                         if (isset($run_parameter['dont_fork'])) {
1146                                 $dont_fork = $run_parameter['dont_fork'];
1147                         }
1148                         if (isset($run_parameter['force_priority'])) {
1149                                 $force_priority = $run_parameter['force_priority'];
1150                         }
1151                 }
1152
1153                 $parameters = json_encode($args);
1154                 $found = DBA::exists('workerqueue', ['parameter' => $parameters, 'done' => false]);
1155
1156                 // Quit if there was a database error - a precaution for the update process to 3.5.3
1157                 if (DBA::errorNo() != 0) {
1158                         return false;
1159                 }
1160
1161                 if (!$found) {
1162                         DBA::insert('workerqueue', ['parameter' => $parameters, 'created' => $created, 'priority' => $priority]);
1163                 } elseif ($force_priority) {
1164                         DBA::update('workerqueue', ['priority' => $priority], ['parameter' => $parameters, 'done' => false, 'pid' => 0]);
1165                 }
1166
1167                 // Should we quit and wait for the worker to be called as a cronjob?
1168                 if ($dont_fork) {
1169                         return true;
1170                 }
1171
1172                 // If there is a lock then we don't have to check for too much worker
1173                 if (!Lock::acquire('worker', 0)) {
1174                         return true;
1175                 }
1176
1177                 // If there are already enough workers running, don't fork another one
1178                 $quit = self::tooMuchWorkers();
1179                 Lock::release('worker');
1180
1181                 if ($quit) {
1182                         return true;
1183                 }
1184
1185                 // We tell the daemon that a new job entry exists
1186                 if (Config::get('system', 'worker_daemon_mode', false)) {
1187                         // We don't have to set the IPC flag - this is done in "tooMuchWorkers"
1188                         return true;
1189                 }
1190
1191                 // Now call the worker to execute the jobs that we just added to the queue
1192                 self::spawnWorker();
1193
1194                 return true;
1195         }
1196
1197         /**
1198          * Returns the next retrial level for worker jobs.
1199          * This function will skip levels when jobs are older.
1200          *
1201          * @param array $queue Worker queue entry
1202          * @param integer $max_level maximum retrial level
1203          * @return integer the next retrial level value
1204          */
1205         private static function getNextRetrial($queue, $max_level)
1206         {
1207                 $created = strtotime($queue['created']);
1208                 $retrial_time = time() - $created;
1209
1210                 $new_retrial = $queue['retrial'] + 1;
1211                 $total = 0;
1212                 for ($retrial = 0; $retrial <= $max_level + 1; ++$retrial) {
1213                         $delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
1214                         $total += $delay;
1215                         if (($total < $retrial_time) && ($retrial > $queue['retrial'])) {
1216                                 $new_retrial = $retrial;
1217                         }
1218                 }
1219                 Logger::info('New retrial for task', ['id' => $queue['id'], 'created' => $queue['created'], 'old' => $queue['retrial'], 'new' => $new_retrial]);
1220                 return $new_retrial;
1221         }
1222
1223         /**
1224          * Defers the current worker entry
1225          */
1226         public static function defer()
1227         {
1228                 if (empty(BaseObject::getApp()->queue)) {
1229                         return;
1230                 }
1231
1232                 $queue = BaseObject::getApp()->queue;
1233
1234                 $retrial = $queue['retrial'];
1235                 $id = $queue['id'];
1236                 $priority = $queue['priority'];
1237
1238                 $max_level = Config::get('system', 'worker_defer_limit');
1239
1240                 $new_retrial = self::getNextRetrial($queue, $max_level);
1241
1242                 if ($new_retrial > $max_level) {
1243                         Logger::info('The task exceeded the maximum retry count', ['id' => $id, 'max_level' => $max_level, 'retrial' => $new_retrial]);
1244                         return;
1245                 }
1246
1247                 // Calculate the delay until the next trial
1248                 $delay = (($new_retrial + 2) ** 4) + (rand(1, 30) * ($new_retrial));
1249                 $next = DateTimeFormat::utc('now + ' . $delay . ' seconds');
1250
1251                 if (($priority < PRIORITY_MEDIUM) && ($new_retrial > 3)) {
1252                         $priority = PRIORITY_MEDIUM;
1253                 } elseif (($priority < PRIORITY_LOW) && ($new_retrial > 6)) {
1254                         $priority = PRIORITY_LOW;
1255                 } elseif (($priority < PRIORITY_NEGLIGIBLE) && ($new_retrial > 8)) {
1256                         $priority = PRIORITY_NEGLIGIBLE;
1257                 }
1258
1259                 Logger::info('Deferred task', ['id' => $id, 'retrial' => $new_retrial, 'next_execution' => $next, 'old_prio' => $queue['priority'], 'new_prio' => $priority]);
1260
1261                 $stamp = (float)microtime(true);
1262                 $fields = ['retrial' => $new_retrial, 'next_try' => $next, 'executed' => DBA::NULL_DATETIME, 'pid' => 0, 'priority' => $priority];
1263                 DBA::update('workerqueue', $fields, ['id' => $id]);
1264                 self::$db_duration += (microtime(true) - $stamp);
1265                 self::$db_duration_write += (microtime(true) - $stamp);
1266         }
1267
1268         /**
1269          * Log active processes into the "process" table
1270          *
1271          * @brief Log active processes into the "process" table
1272          */
1273         public static function startProcess()
1274         {
1275                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
1276
1277                 $command = basename($trace[0]['file']);
1278
1279                 Process::deleteInactive();
1280
1281                 Process::insert($command);
1282         }
1283
1284         /**
1285          * Remove the active process from the "process" table
1286          *
1287          * @brief Remove the active process from the "process" table
1288          * @return bool
1289          * @throws \Exception
1290          */
1291         public static function endProcess()
1292         {
1293                 return Process::deleteByPid();
1294         }
1295
1296         /**
1297          * Set the flag if some job is waiting
1298          *
1299          * @brief Set the flag if some job is waiting
1300          * @param boolean $jobs Is there a waiting job?
1301          * @throws \Exception
1302          */
1303         public static function IPCSetJobState($jobs)
1304         {
1305                 $stamp = (float)microtime(true);
1306                 DBA::update('worker-ipc', ['jobs' => $jobs], ['key' => 1], true);
1307                 self::$db_duration += (microtime(true) - $stamp);
1308                 self::$db_duration_write += (microtime(true) - $stamp);
1309         }
1310
1311         /**
1312          * Checks if some worker job waits to be executed
1313          *
1314          * @brief Checks if some worker job waits to be executed
1315          * @return bool
1316          * @throws \Exception
1317          */
1318         public static function IPCJobsExists()
1319         {
1320                 $stamp = (float)microtime(true);
1321                 $row = DBA::selectFirst('worker-ipc', ['jobs'], ['key' => 1]);
1322                 self::$db_duration += (microtime(true) - $stamp);
1323
1324                 // When we don't have a row, no job is running
1325                 if (!DBA::isResult($row)) {
1326                         return false;
1327                 }
1328
1329                 return (bool)$row['jobs'];
1330         }
1331 }