]> git.mxchange.org Git - friendica.git/blob - include/poller.php
Merge pull request #2329 from annando/1602-poller-db
[friendica.git] / include / poller.php
1 <?php
2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3         $directory = dirname($_SERVER["argv"][0]);
4
5         if (substr($directory, 0, 1) != "/")
6                 $directory = $_SERVER["PWD"]."/".$directory;
7
8         $directory = realpath($directory."/..");
9
10         chdir($directory);
11 }
12
13 require_once("boot.php");
14
15 function poller_run(&$argv, &$argc){
16         global $a, $db;
17
18         if(is_null($a)) {
19                 $a = new App;
20         }
21
22         if(is_null($db)) {
23                 @include(".htconfig.php");
24                 require_once("include/dba.php");
25                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
26                 unset($db_host, $db_user, $db_pass, $db_data);
27         };
28
29         if (poller_max_connections_reached())
30                 return;
31
32         $load = current_load();
33         if($load) {
34                 $maxsysload = intval(get_config('system','maxloadavg'));
35                 if($maxsysload < 1)
36                         $maxsysload = 50;
37
38                 if(intval($load) > $maxsysload) {
39                         logger('system: load ' . $load . ' too high. poller deferred to next scheduled run.');
40                         return;
41                 }
42         }
43
44         // Checking the number of workers
45         if (poller_too_much_workers(1)) {
46                 poller_kill_stale_workers();
47                 return;
48         }
49
50         if(($argc <= 1) OR ($argv[1] != "no_cron")) {
51                 // Run the cron job that calls all other jobs
52                 proc_run("php","include/cron.php");
53
54                 // Run the cronhooks job separately from cron for being able to use a different timing
55                 proc_run("php","include/cronhooks.php");
56
57                 // Cleaning dead processes
58                 poller_kill_stale_workers();
59         } else
60                 // Sleep four seconds before checking for running processes again to avoid having too many workers
61                 sleep(4);
62
63         // Checking number of workers
64         if (poller_too_much_workers(2))
65                 return;
66
67         $starttime = time();
68
69         while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) {
70
71                 // Count active workers and compare them with a maximum value that depends on the load
72                 if (poller_too_much_workers(3))
73                         return;
74
75                 q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `executed` = '0000-00-00 00:00:00'",
76                         dbesc(datetime_convert()),
77                         intval(getmypid()),
78                         intval($r[0]["id"]));
79
80                 // Assure that there are no tasks executed twice
81                 $id = q("SELECT `id` FROM `workerqueue` WHERE `id` = %d AND `pid` = %d",
82                         intval($r[0]["id"]),
83                         intval(getmypid()));
84                 if (!$id) {
85                         logger("Queue item ".$r[0]["id"]." was executed multiple times - skip this execution", LOGGER_DEBUG);
86                         continue;
87                 }
88
89                 $argv = json_decode($r[0]["parameter"]);
90
91                 $argc = count($argv);
92
93                 // Check for existance and validity of the include file
94                 $include = $argv[0];
95
96                 if (!validate_include($include)) {
97                         logger("Include file ".$argv[0]." is not valid!");
98                         q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
99                         continue;
100                 }
101
102                 require_once($include);
103
104                 $funcname=str_replace(".php", "", basename($argv[0]))."_run";
105
106                 if (function_exists($funcname)) {
107                         logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." ".$r[0]["parameter"]);
108                         $funcname($argv, $argc);
109
110                         logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." - done");
111
112                         q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
113                 } else
114                         logger("Function ".$funcname." does not exist");
115
116                 // Quit the poller once every hour
117                 if (time() > ($starttime + 3600))
118                         return;
119         }
120
121 }
122
123 /**
124  * @brief Checks if the number of database connections has reached a critical limit.
125  *
126  * @return bool Are more than 3/4 of the maximum connections used?
127  */
128 function poller_max_connections_reached() {
129         $r = q("SHOW VARIABLES WHERE `variable_name` = 'max_connections'");
130         if (!$r)
131                 return false;
132
133         $max = intval($r[0]["Value"]);
134         if ($max == 0)
135                 return false;
136
137         $r = q("SHOW STATUS WHERE `variable_name` = 'Threads_connected'");
138         if (!$r)
139                 return false;
140
141         $connected = intval($r[0]["Value"]);
142         if ($connected == 0)
143                 return false;
144
145         $level = $connected / $max;
146
147         logger("Connection usage: ".$connected."/".$max, LOGGER_DEBUG);
148
149         if ($level < (3/4))
150                 return false;
151
152         logger("Maximum level (3/4) of connections reached: ".$connected."/".$max);
153         return true;
154
155 }
156
157 /**
158  * @brief fix the queue entry if the worker process died
159  *
160  */
161 function poller_kill_stale_workers() {
162         $r = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
163         foreach($r AS $pid)
164                 if (!posix_kill($pid["pid"], 0))
165                         q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d",
166                                 intval($pid["pid"]));
167                 else {
168                         // Kill long running processes
169                         $duration = (time() - strtotime($pid["executed"])) / 60;
170                         if ($duration > 180) {
171                                 logger("Worker process ".$pid["pid"]." took more than 3 hours. It will be killed now.");
172                                 posix_kill($pid["pid"], SIGTERM);
173
174                                 // Question: If a process is stale: Should we remove it or should we reschedule it?
175                                 // By now we rescheduling it. It's maybe not the wisest decision?
176                                 q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d",
177                                         intval($pid["pid"]));
178                         } else
179                                 logger("Worker process ".$pid["pid"]." now runs for ".round($duration)." minutes. That's okay.", LOGGER_DEBUG);
180                 }
181 }
182
183 function poller_too_much_workers($stage) {
184
185         $queues = get_config("system", "worker_queues");
186
187         if ($queues == 0)
188                 $queues = 4;
189
190         $active = poller_active_workers();
191
192         // Decrease the number of workers at higher load
193         $load = current_load();
194         if($load) {
195                 $maxsysload = intval(get_config('system','maxloadavg'));
196                 if($maxsysload < 1)
197                         $maxsysload = 50;
198
199                 $maxworkers = $queues;
200
201                 // Some magical mathemathics to reduce the workers
202                 $exponent = 3;
203                 $slope = $maxworkers / pow($maxsysload, $exponent);
204                 $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent));
205
206                 logger("Current load stage ".$stage.": ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG);
207
208         }
209
210         return($active >= $queues);
211 }
212
213 function poller_active_workers() {
214         $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
215
216         return($workers[0]["workers"]);
217 }
218
219 if (array_search(__file__,get_included_files())===0){
220   poller_run($_SERVER["argv"],$_SERVER["argc"]);
221   killme();
222 }
223 ?>