X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FCron.php;h=01c54fed1845576124498faf43d02f712bb52eb9;hb=34030a736d5e0aa2195c0f472cf69f863c161d83;hp=1901766d3ac1d4d341f69322388c902ae8704b44;hpb=460b6d1c75c5187bb8e51c39c847ff9f8cf37a73;p=friendica.git diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index 1901766d3a..01c54fed18 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -1,6 +1,6 @@ get('system', 'delete_sleeping_processes')) { + self::deleteSleepingProcesses(); + } + // Fork the cron jobs in separate parts to avoid problems when one of them is crashing Hook::fork(PRIORITY_MEDIUM, 'cron'); @@ -87,9 +92,6 @@ class Cron Worker::add(PRIORITY_LOW, 'PullDirectory'); } - // Delete all done workerqueue entries - Worker::add(PRIORITY_LOW, 'CleanWorkerQueue'); - // Clear cache entries Worker::add(PRIORITY_LOW, 'ClearCache'); @@ -103,19 +105,11 @@ class Cron Worker::add(PRIORITY_LOW, 'UpdatePhotoAlbums'); - // update nodeinfo data - Worker::add(PRIORITY_LOW, 'NodeInfo'); - - // Repair entries in the database - Worker::add(PRIORITY_LOW, 'RepairDatabase'); - - Worker::add(PRIORITY_LOW, 'Expire'); - Worker::add(PRIORITY_LOW, 'ExpirePosts'); Worker::add(PRIORITY_LOW, 'ExpireConversations'); - Worker::add(PRIORITY_LOW, 'CleanItemUri'); + Worker::add(PRIORITY_LOW, 'RemoveUnusedTags'); Worker::add(PRIORITY_LOW, 'RemoveUnusedContacts'); @@ -137,4 +131,25 @@ class Cron DI::config()->set('system', 'last_cron', time()); } + + /** + * Kill sleeping database processes + * + * @return void + */ + private static function deleteSleepingProcesses() + { + Logger::info('Looking for sleeping processes'); + + $processes = DBA::p("SHOW FULL PROCESSLIST"); + while ($process = DBA::fetch($processes)) { + if (($process['Command'] != 'Sleep') || ($process['Time'] < 300) || ($process['db'] != DBA::databaseName())) { + continue; + } + + DBA::e("KILL ?", $process['Id']); + Logger::notice('Killed sleeping process', ['id' => $process['Id']]); + } + DBA::close($processes); + } }