pgsql: At promotion, archive last segment from old timeline with .parti

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: At promotion, archive last segment from old timeline with .parti
Дата
Msg-id E1Yqncc-0001lK-Ss@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: At promotion, archive last segment from old timeline with .parti  (Fujii Masao <masao.fujii@gmail.com>)
Re: pgsql: At promotion, archive last segment from old timeline with .parti  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-committers
At promotion, archive last segment from old timeline with .partial suffix.

Previously, we would archive the possible-incomplete WAL segment with its
normal filename, but that causes trouble if the server owning that timeline
is still running, and tries to archive the same segment later. It's not nice
for the standby to trip up the master's archival like that. And it's pretty
confusing, anyway, to have an incomplete segment in the archive that's
indistinguishable from a normal, complete segment.

To avoid such confusion, add a .partial suffix to the file. Or to be more
precise, make a copy of the old segment under the .partial suffix, and
archive that instead of the original file. pg_receivexlog also uses the
.partial suffix for the same purpose, to tell apart incompletely streamed
files from complete ones.

There is no automatic mechanism to use the .partial files at recovery, so
they will go unused, unless the administrator manually copies to them to
the pg_xlog directory (and removes the .partial suffix). Recovery won't
normally need the WAL - when recovering to the new timeline, it will find
the same WAL on the first segment on the new timeline instead - but it
nevertheless feels better to archive the file with the .partial suffix, for
debugging purposes if nothing else.

Branch
------
master

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

Modified Files
--------------
src/backend/access/transam/xlog.c  |  133 +++++++++++++++++++++++++++---------
src/include/access/xlog_internal.h |    5 ++
src/include/postmaster/pgarch.h    |    2 +-
3 files changed, 107 insertions(+), 33 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Fix whitespace
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Add macros to check if a filename is a WAL segment or other such