pgsql: Avoid bogus "out-of-sequence timeline ID" errors in standby-mode

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Avoid bogus "out-of-sequence timeline ID" errors in standby-mode
Дата
Msg-id E1TbZW5-0000pe-Sr@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Avoid bogus "out-of-sequence timeline ID" errors in standby-mode.

When startup process opens a WAL segment after replaying part of it, it
validates the first page on the WAL segment, even though the page it's
really interested in later in the file. As part of the validation, it checks
that the TLI on the page header is >= the TLI it saw on the last page it
read. If the segment contains a timeline switch, and we have already
replayed it, and then re-open the WAL segment (because of streaming
replication got disconnected and reconnected, for example), the TLI check
will fail when the first page is validated. Fix that by relaxing the TLI
check when re-opening a WAL segment.

Backpatch to 9.0. Earlier versions had the same code, but before standby
mode was introduced in 9.0, recovery never tried to re-read a segment after
partially replaying it.

Reported by Amit Kapila, while testing a new feature.

Branch
------
REL9_1_STABLE

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

Modified Files
--------------
src/backend/access/transam/xlog.c |   32 +++++++++++++++++++++++---------
1 files changed, 23 insertions(+), 9 deletions(-)


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Avoid bogus "out-of-sequence timeline ID" errors in standby-mode
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Avoid bogus "out-of-sequence timeline ID" errors in standby-mode