Re: could not access status of transaction

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: could not access status of transaction
Дата
Msg-id 11462.1238032941@sss.pgh.pa.us
обсуждение исходный текст
Ответ на could not access status of transaction  (Tom Duffey <tduffey@techbydesign.com>)
Ответы Re: could not access status of transaction  (Tom Duffey <tduffey@techbydesign.com>)
Список pgsql-general
Tom Duffey <tduffey@techbydesign.com> writes:
> One of our databases suffered a problem yesterday during a normal
> update, something we have been doing for years.  Near the end of the
> process a foreign key constraint is rebuilt on a table containing
> several hundred million rows.  Rebuilding the constraint failed with
> the following message:

> ERROR:  could not access status of transaction 4294918145
> DETAIL:  Could not open file "pg_clog/0FFF": No such file or directory.

This looks like a garden-variety data corruption problem to me.
Trashed rows tend to yield this type of error because the "xmin"
transaction ID is the first field that the server can check with
any amount of finesse.  4294918145 is FFFF4001 in hex, saith my
calculator, so it looks like a bunch of bits went to ones --- or
perhaps more likely, the row offset in the page header got clobbered
and we're looking at some bytes that never were a transaction ID
at all.

So I'd try looking around for flaky RAM, failing disks, loose cables,
that sort of thing ...

            regards, tom lane

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

Предыдущее
От: Tim Uckun
Дата:
Сообщение: Re: log shipping from 64 bit linux server to a 32 bit linux server
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: log shipping from 64 bit linux server to a 32 bit linux server