Re: How to detect if Postgres needs a restart when configuration changes

Поиск
Список
Период
Сортировка
От Ian Barwick
Тема Re: How to detect if Postgres needs a restart when configuration changes
Дата
Msg-id 542B48C5.6070507@2ndquadrant.com
обсуждение исходный текст
Ответ на How to detect if Postgres needs a restart when configuration changes  (Strahinja Kustudić <strahinjak@nordeus.com>)
Ответы Re: How to detect if Postgres needs a restart when configuration changes
Список pgsql-admin
On 14/10/01 8:51, Strahinja Kustudić wrote:
> I am automating Postgres deployment on Linux and I need to check if Postgres
> needs to be restarted when a configuration parameter that requires a restart
> changes, e.g. when you change wal_level. Is there a way to detect a parameter
> which requires a restart was changed?
>
> Reading the log file after sending SIGHUP is not possible to automate. I know
> I can query pg_settings and then compare relevant parameters from the conf file,
> but that means I will need to check all parameters which I set and which require a
> restart. I only need to know if postgres requires a restart.

I created an experimental background worker which records configuration parameter
changes after a SIGHUP is received:

  https://github.com/ibarwick/config_log

It was originally intended to log configuration changes, however it
might be possible to create a query based off the recorded values to detect
changes which require a restart.

No guarantee of fitness for purpose. Requires 9.3 or later.


Regards

Ian Barwick

--
 Ian Barwick                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


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

Предыдущее
От: Payal Singh
Дата:
Сообщение: Re: How to detect if Postgres needs a restart when configuration changes
Следующее
От: Jason Mathis
Дата:
Сообщение: Re: How to detect if Postgres needs a restart when configuration changes