]> git.mxchange.org Git - friendica.git/blob - src/Core/Worker/Cron.php
Fixed code structure
[friendica.git] / src / Core / Worker / Cron.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\Worker;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Post;
29 use Friendica\Protocol\ActivityPub;
30 use Friendica\Util\DateTimeFormat;
31
32 /**
33  * Contains the class for jobs that are executed in an interval
34  */
35 class Cron
36 {
37         /**
38          * Runs the cron processes
39          *
40          * @return void
41          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
42          */
43         public static function run()
44         {
45                 Logger::info('Add cron entries');
46
47                 // Check for spooled items
48                 Worker::add(['priority' => PRIORITY_HIGH, 'force_priority' => true], 'SpoolPost');
49
50                 // Run the cron job that calls all other jobs
51                 Worker::add(['priority' => PRIORITY_MEDIUM, 'force_priority' => true], 'Cron');
52
53                 // Cleaning dead processes
54                 self::killStaleWorkers();
55
56                 // Remove old entries from the workerqueue
57                 self::cleanWorkerQueue();
58
59                 // Directly deliver or requeue posts
60                 self::deliverPosts();
61         }
62
63         /**
64          * fix the queue entry if the worker process died
65          *
66          * @return void
67          * @throws \Exception
68          */
69         public static function killStaleWorkers()
70         {
71                 $entries = DBA::select(
72                         'workerqueue',
73                         ['id', 'pid', 'executed', 'priority', 'command', 'parameter'],
74                         ['NOT `done` AND `pid` != 0'],
75                         ['order' => ['priority', 'retrial', 'created']]
76                 );
77
78                 while ($entry = DBA::fetch($entries)) {
79                         if (!posix_kill($entry["pid"], 0)) {
80                                 DBA::update(
81                                         'workerqueue',
82                                         ['executed' => DBA::NULL_DATETIME, 'pid' => 0],
83                                         ['id' => $entry["id"]]
84                                 );
85                         } else {
86                                 // Kill long running processes
87
88                                 // Define the maximum durations
89                                 $max_duration_defaults = [PRIORITY_CRITICAL => 720, PRIORITY_HIGH => 10, PRIORITY_MEDIUM => 60, PRIORITY_LOW => 180, PRIORITY_NEGLIGIBLE => 720];
90                                 $max_duration          = $max_duration_defaults[$entry['priority']];
91
92                                 $argv = json_decode($entry['parameter'], true);
93                                 if (!empty($entry['command'])) {
94                                         $command = $entry['command'];
95                                 } elseif (!empty($argv)) {
96                                         $command = array_shift($argv);
97                                 } else {
98                                         return;
99                                 }
100
101                                 $command = basename($command);
102
103                                 // How long is the process already running?
104                                 $duration = (time() - strtotime($entry["executed"])) / 60;
105                                 if ($duration > $max_duration) {
106                                         Logger::notice('Worker process took too much time - killed', ['duration' => number_format($duration, 3), 'max' => $max_duration, 'id' => $entry["id"], 'pid' => $entry["pid"], 'command' => $command]);
107                                         posix_kill($entry["pid"], SIGTERM);
108
109                                         // We killed the stale process.
110                                         // To avoid a blocking situation we reschedule the process at the beginning of the queue.
111                                         // Additionally we are lowering the priority. (But not PRIORITY_CRITICAL)
112                                         $new_priority = $entry['priority'];
113                                         if ($entry['priority'] == PRIORITY_HIGH) {
114                                                 $new_priority = PRIORITY_MEDIUM;
115                                         } elseif ($entry['priority'] == PRIORITY_MEDIUM) {
116                                                 $new_priority = PRIORITY_LOW;
117                                         } elseif ($entry['priority'] != PRIORITY_CRITICAL) {
118                                                 $new_priority = PRIORITY_NEGLIGIBLE;
119                                         }
120                                         DBA::update(
121                                                 'workerqueue',
122                                                 ['executed' => DBA::NULL_DATETIME, 'created' => DateTimeFormat::utcNow(), 'priority' => $new_priority, 'pid' => 0],
123                                                 ['id' => $entry["id"]]
124                                         );
125                                 } else {
126                                         Logger::info('Process runtime is okay', ['duration' => number_format($duration, 3), 'max' => $max_duration, 'id' => $entry["id"], 'pid' => $entry["pid"], 'command' => $command]);
127                                 }
128                         }
129                 }
130                 DBA::close($entries);
131         }
132
133         /**
134          * Remove old entries from the workerqueue
135          *
136          * @return void
137          */
138         private static function cleanWorkerQueue()
139         {
140                 DBA::delete('workerqueue', ["`done` AND `executed` < ?", DateTimeFormat::utc('now - 1 hour')]);
141
142                 // Optimizing this table only last seconds
143                 if (DI::config()->get('system', 'optimize_tables')) {
144                         // We are acquiring the two locks from the worker to avoid locking problems
145                         if (DI::lock()->acquire(Worker::LOCK_PROCESS, 10)) {
146                                 if (DI::lock()->acquire(Worker::LOCK_WORKER, 10)) {
147                                         DBA::e("OPTIMIZE TABLE `workerqueue`");
148                                         DBA::e("OPTIMIZE TABLE `process`");
149                                         DI::lock()->release(Worker::LOCK_WORKER);
150                                 }
151                                 DI::lock()->release(Worker::LOCK_PROCESS);
152                         }
153                 }
154         }
155
156         /**
157          * Directly deliver AP messages or requeue them.
158          *
159          * This function is placed here as a safeguard. Even when the worker queue is completely blocked, messages will be delivered.
160          */
161         private static function deliverPosts()
162         {
163                 $deliveries = DBA::p("SELECT `item-uri`.`uri` AS `inbox`, MAX(`failed`) AS `failed` FROM `post-delivery` INNER JOIN `item-uri` ON `item-uri`.`id` = `post-delivery`.`inbox-id` GROUP BY `inbox`");
164                 while ($delivery = DBA::fetch($deliveries)) {
165                         if ($delivery['failed'] == 0) {
166                                 $result = ActivityPub\Delivery::deliver($delivery['inbox']);
167                                 Logger::info('Drectly deliver inbox', ['inbox' => $delivery['inbox'], 'result' => $result['success']]);
168                                 continue;
169                         } elseif ($delivery['failed'] < 3) {
170                                 $priority = PRIORITY_HIGH;
171                         } elseif ($delivery['failed'] < 6) {
172                                 $priority = PRIORITY_MEDIUM;
173                         } elseif ($delivery['failed'] < 8) {
174                                 $priority = PRIORITY_LOW;
175                         } {
176                                 $priority = PRIORITY_NEGLIGIBLE;
177                         }
178
179                         if ($delivery['failed'] >= DI::config()->get('system', 'worker_defer_limit')) {
180                                 Logger::info('Removing failed deliveries', ['inbox' => $delivery['inbox'], 'failed' => $delivery['failed']]);
181                                 Post\Delivery::removeFailed($delivery['inbox']);
182                         }
183
184                         if (Worker::add($priority, 'APDelivery', '', 0, $delivery['inbox'], 0)) {
185                                 Logger::info('Missing APDelivery worker added for inbox', ['inbox' => $delivery['inbox'], 'failed' => $delivery['failed'], 'priority' => $priority]);
186                         }
187                 }
188         }
189 }