Re: Apparent bug in WAL summarizer process (hung state)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Apparent bug in WAL summarizer process (hung state)
Дата
Msg-id 1354610.1719345084@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Apparent bug in WAL summarizer process (hung state)  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: Apparent bug in WAL summarizer process (hung state)
Список pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes:
> Yeah, this is a bug. It seems that the WAL summarizer process, when
> restarted, wants to restart from wherever it was previously
> summarizing WAL, which is correct if that WAL is still around, but if
> summarize_wal has been turned off in the meanwhile, it might not be
> correct. Here's a patch to fix that.

This comment seems to be truncated:

+    /*
+     * If we're the WAL summarizer, we always want to store the values we
+     * just computed into shared memory, because those are the values we're
+     * going to use to drive our operation, and so they are the authoritative
+     * values. Otherwise, we only store values into shared memory if they are
+     */
+    LWLockAcquire(WALSummarizerLock, LW_EXCLUSIVE);
+    if (am_wal_summarizer|| !WalSummarizerCtl->initialized)
+    {

            regards, tom lane



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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: Apparent bug in WAL summarizer process (hung state)
Следующее
От: Robert Haas
Дата:
Сообщение: Re: improve predefined roles documentation