New (experimental) value to define the maximum level of database connections for the worker

2022.09-rc
Michael Vogel 2016-04-23 10:11:09 +02:00 zatwierdzone przez Roland Haeder
rodzic c69aab6ee0
commit 62ca636612
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B72F8185C6C7BD78
2 zmienionych plików z 13 dodań i 7 usunięć

Wyświetl plik

@ -34,7 +34,8 @@ line to your .htconfig.php:
* like_no_comment (Boolean) - Don't update the "commented" value of an item when it is liked.
* local_block (Boolean) - Used in conjunction with "block_public".
* local_search (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system.
* max_connections - The poller process isn't started when 3/4 of the possible database connections are used. When the system can't detect the maximum numbers of connection then this value can be used.
* max_connections - The poller process isn't started when the maximum level of the possible database connections are used. When the system can't detect the maximum numbers of connection then this value can be used.
* max_connections_level - The maximum level of connections that are allowed to let the poller start. It is a percentage value. Default value is 75.
* max_contact_queue - Default value is 500.
* max_batch_queue - Default value is 1000.
* no_oembed (Boolean) - Don't use OEmbed to fetch more information about a link.

Wyświetl plik

@ -125,6 +125,11 @@ function poller_max_connections_reached() {
// Fetch the max value from the config. This is needed when the system cannot detect the correct value by itself.
$max = get_config("system", "max_connections");
// Fetch the percentage level where the poller will get active
$maxlevel = get_config("system", "max_connections_level");
if ($maxlevel == 0)
$maxlevel = 75;
if ($max == 0) {
// the maximum number of possible user connections can be a system variable
$r = q("SHOW VARIABLES WHERE `variable_name` = 'max_user_connections'");
@ -153,10 +158,10 @@ function poller_max_connections_reached() {
logger("Connection usage (user values): ".$used."/".$max, LOGGER_DEBUG);
$level = $used / $max;
$level = ($used / $max) * 100;
if ($level >= (3/4)) {
logger("Maximum level (3/4) of user connections reached: ".$used."/".$max);
if ($level >= $maxlevel) {
logger("Maximum level (".$maxlevel."%) of user connections reached: ".$used."/".$max);
return true;
}
}
@ -181,12 +186,12 @@ function poller_max_connections_reached() {
logger("Connection usage (system values): ".$used."/".$max, LOGGER_DEBUG);
$level = $used / $max;
$level = $used / $max * 100;
if ($level < (3/4))
if ($level < $maxlevel)
return false;
logger("Maximum level (3/4) of system connections reached: ".$used."/".$max);
logger("Maximum level (".$level."%) of system connections reached: ".$used."/".$max);
return true;
}