Minor race-condition problem during database startup

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Minor race-condition problem during database startup
Дата
Msg-id 29054.1227377419@sss.pgh.pa.us
обсуждение исходный текст
Ответы Re: Minor race-condition problem during database startup  (Zdenek Kotala <Zdenek.Kotala@Sun.COM>)
Список pgsql-hackers
Buildfarm member pika showed an interesting transient failure yesterday:
http://www.pgbuildfarm.org/cgi-bin/show_log.pl?nm=pika&dt=2008-11-21%2012:13:06

./pg_regress --inputdir=. --dlpath=. --multibyte=SQL_ASCII --load-language=plpgsql  --no-locale
--temp-install=./tmp_check--top-builddir=../../.. --temp-port=55678 --schedule=./parallel_schedule
--temp-config=/tmp/buildfarm-24h8Wg
============== creating temporary installation        ==============
============== initializing database system           ==============
============== starting postmaster                    ==============
running on port 55678 with pid 19223
============== creating database "regression"         ==============
ERROR:  could not request checkpoint because bgwriter not running
command failed:
"/home/pgbuildfarm/workdir/HEAD/pgsql.3950/src/test/regress/./tmp_check/install//home/pgbuildfarm/workdir/HEAD/inst/bin/psql"
-X-c "CREATE DATABASE \"regression\" TEMPLATE=template0 ENCODING='SQL_ASCII'" "postgres"
 
server stopped
gmake: *** [check] Error 2

What seems to have happened is that the bgwriter didn't get as far as
the first line of BackgroundWriterMain before the client backend tried
to issue a checkpoint request.

This is obviously a pretty minor issue, but it still seems worth fixing.
We could either try to make sure that BgWriterShmem->bgwriter_pid gets
set before the postmaster "opens its doors" for clients, or allow
RequestCheckpoint() to wait a little bit if needed for the bgwriter
to come ready.  The latter seems like a more localized change.

Thoughts?
        regards, tom lane


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: HEAD build failure on win32 mingw
Следующее
От: Alvaro Herrera
Дата:
Сообщение: portability of "designated initializers"