Re: fix bgworkers in EXEC_BACKEND

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: fix bgworkers in EXEC_BACKEND
Дата
Msg-id 22625.1356651897@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: fix bgworkers in EXEC_BACKEND  (Andres Freund <andres@2ndquadrant.com>)
Ответы Re: fix bgworkers in EXEC_BACKEND
Re: fix bgworkers in EXEC_BACKEND
Список pgsql-hackers
Andres Freund <andres@2ndquadrant.com> writes:
> I am still worried about the following scenario in the EXEC_BACKEND case:

> 1) postmaster starts
> 2) reads config
> 3) executes _PG_init for shared_preload_libraries
> 4) library 'abc' gets config value 'abc.num_workers = 2' and registers as many workers
> 5) some time goes by, workers, backends start
> 6) abc.num_workers gets changed to 3, SIGHUP

This is broken whether it's EXEC_BACKEND or not: you don't get to change
anything that determines the number of workers post-startup.
num_workers should have been declared PGC_POSTMASTER.
        regards, tom lane



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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: fix bgworkers in EXEC_BACKEND
Следующее
От: Andres Freund
Дата:
Сообщение: Re: fix bgworkers in EXEC_BACKEND