From: Alvaro Herrera Date: Thu, 10 Sep 2009 15:02:46 +0000 (+0000) Subject: Add note that the logging collector can block backends in high load situations. X-Git-Tag: REL8_5_ALPHA2~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19fd0c2e56dab228385fba427e004715ae0482c7;p=postgresql Add note that the logging collector can block backends in high load situations. --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index dd37586f1c..c9603419ae 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ - + Server Configuration @@ -2422,6 +2422,19 @@ local0.* /var/log/postgresql is dynamic-linker failure messages). This parameter can only be set at server start. + + + + The logging collector is designed to never lose messages. This means + that in case of extremely high load, server processes could be + blocked due to trying to send additional log messages when the + collector has fallen behind. In contrast, syslog + prefers to drop messages if it cannot write them, which means it's + less reliable in those cases but it will not block the rest of the + system. + + +