Hot Standby startup with overflowed snapshots

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Hot Standby startup with overflowed snapshots
Дата
Msg-id CA+U5nMJ3-kAFtRZo5g7gRjp0iA4BwdavbbH9_UQsekeqT-2m1A@mail.gmail.com
обсуждение исходный текст
Ответы Re: Hot Standby startup with overflowed snapshots
Список pgsql-hackers
Chris Redekop's recent report of slow startup for Hot Standby has made
me revisit the code there.

Although there isn't a bug, there is a missed opportunity for starting
up faster which could be the source of Chris' annoyance.

The following patch allows a faster startup in some circumstances.

The patch also alters the log levels for messages and gives a single
simple message for this situation. The log will now say

  LOG:  recovery snapshot waiting for non-overflowed snapshot or until
oldest active xid on standby is at least %u (now %u)
  ...multiple times until snapshot non-overflowed or xid reached...

whereas before the first LOG message shown was

  LOG:  consistent state delayed because recovery snapshot incomplete
  and only later, at DEBUG2 do you see
  LOG:  recovery snapshot waiting for %u oldest active xid on standby is %u
  ...multiple times until xid reached...

Comments please.

--
 Simon Riggs                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

Вложения

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

Предыдущее
От: "Erik Rijkers"
Дата:
Сообщение: Re: (PATCH) Adding CORRESPONDING (NULL error)
Следующее
От: Simon Riggs
Дата:
Сообщение: Re: Hot Backup with rsync fails at pg_clog if under load