Re: Unable to explain DB error

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Unable to explain DB error
Дата
Msg-id 25774.1122574768@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Unable to explain DB error  (Steven Rosenstein <srosenst@us.ibm.com>)
Список pgsql-performance
Steven Rosenstein <srosenst@us.ibm.com> writes:
> Any idea why Postgres would be looking for a clog file name 0FC0 when the most recent filename is 04CE?

Corrupt data --- specifically a bad transaction number in a tuple
header.  (In practice, this is the first field looked at in which
we can readily detect an error, so you tend to see this symptom for
any serious data corruption situation.  The actual fault may well
be something like a corrupt page header causing the code to follow
"tuple pointers" that point to garbage.)

See the PG list archives for past discussions of dealing with corrupt
data.  pgsql-performance is pretty off-topic for this.

BTW, PG 7.4 and up handle this sort of thing much more gracefully ...
they can't resurrect corrupt data of course, but they tend not to
panic.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Left joining against two empty tables makes a query
Следующее
От: "Luke Lonergan"
Дата:
Сообщение: Re: Finding bottleneck