diff options
author | Nathan Bossart <nathan@postgresql.org> | 2024-06-05 15:32:47 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2024-06-05 15:32:47 -0500 |
commit | 771b1b00bc60965784340b88ce694636c5eeeed5 (patch) | |
tree | 992b01b50b5ab855f28f50f1cc3785b9e6dbb089 | |
parent | dda633a039ee5f147e6315a786d7a162e898dc72 (diff) |
Fix documentation for POSIX semaphores.
The documentation for POSIX semaphores is missing a reference to
max_wal_senders. This commit fixes that in the same way that
commit 4ebe51a5fb fixed the same issue in the documentation for
System V semaphores.
Discussion: https://postgr.es/m/20240517164452.GA1914161%40nathanxps13
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/runtime.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index c2cdde77f31..13998a458c0 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -882,7 +882,8 @@ psql: could not connect to server: No such file or directory When using POSIX semaphores, the number of semaphores needed is the same as for System V, that is one semaphore per allowed connection (<xref linkend="guc-max-connections"/>), allowed autovacuum worker process - (<xref linkend="guc-autovacuum-max-workers"/>) and allowed background + (<xref linkend="guc-autovacuum-max-workers"/>), allowed WAL sender process + (<xref linkend="guc-max-wal-senders"/>), and allowed background process (<xref linkend="guc-max-worker-processes"/>). On the platforms where this option is preferred, there is no specific kernel limit on the number of POSIX semaphores. |