pgsql: Improve corner cases in pg_ctl's new wait-for-postmaster-startup

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve corner cases in pg_ctl's new wait-for-postmaster-startup
Дата
Msg-id E1QQ1Xe-00071t-V8@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve corner cases in pg_ctl's new wait-for-postmaster-startup code.

With "-w -t 0", we should report "still starting up", not "ok".  If we
fall out of the loop without ever being able to call PQping (because we
were never able to construct a connection string), report "no response",
not "ok".  This gets rid of corner cases in which we'd claim the server
had started even though it had not.

Also, if the postmaster.pid file is not there at any point after we've
waited 5 seconds, assume the postmaster has failed and report that, rather
than almost-certainly-fruitlessly continuing to wait.  The pidfile should
appear almost instantly even when there is extensive startup work to do,
so 5 seconds is already a very conservative figure.  This part is per a
gripe from MauMau --- there might be better ways to do it, but nothing
simple enough to get done for 9.1.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/0bae3bc9be4a025df089f0a0c2f547fa538a97bc

Modified Files
--------------
src/bin/pg_ctl/pg_ctl.c |   19 ++++++++++++++++++-
1 files changed, 18 insertions(+), 1 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Preserve caller's memory context in ProcessCompletedNotifies().
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Drop "meaning" column from error code table