pgsql: Improve our mechanism for controlling the Linux out-of-memory ki

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve our mechanism for controlling the Linux out-of-memory ki
Дата
Msg-id E1WxPyc-0000CY-5x@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve our mechanism for controlling the Linux out-of-memory killer.

Arrange for postmaster child processes to respond to two environment
variables, PG_OOM_ADJUST_FILE and PG_OOM_ADJUST_VALUE, to determine whether
they reset their OOM score adjustments and if so to what.  This is superior
to the previous design involving #ifdef's in several ways.  The behavior is
now available in a default build, and both ends of the adjustment --- the
original adjustment of the postmaster's level and the subsequent
readjustment by child processes --- can now be controlled in one place,
namely the postmaster launch script.  So it's no longer necessary for the
launch script to act on faith that the server was compiled with the
appropriate options.  In addition, if someone wants to use an OOM score
other than zero for the child processes, that doesn't take a recompile
anymore; and we no longer have to cater separately to the two different
historical kernel APIs for this adjustment.

Gurjeet Singh, somewhat revised by me

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/df8b7bc9ffff5b00aacff774600b569992cddeb8

Modified Files
--------------
contrib/start-scripts/linux           |   15 +++++----
doc/src/sgml/runtime.sgml             |   26 +++++++++------
src/backend/postmaster/fork_process.c |   57 +++++++++++----------------------
3 files changed, 44 insertions(+), 54 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Remove unnecessary check for jbvBinary in convertJsonbValue.
Следующее
От: Fujii Masao
Дата:
Сообщение: pgsql: Don't allow data_directory to be set in postgresql.auto.conf by