Re: Postmaster crash

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Postmaster crash
Дата
Msg-id 23442.1011278481@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Postmaster crash  ("Michael Beckstette" <mbeckste@TechFak.Uni-Bielefeld.DE>)
Список pgsql-bugs
"Michael Beckstette" <mbeckste@TechFak.Uni-Bielefeld.DE> writes:
> after several month of very stable operations now my postmaster crashes from
> time to time with the following errormessage:

> FATAL 2:  MoveOfflineLogs: cannot read xlog dir: Invalid argument

Hm, does that show up every five minutes, or just once in awhile?
That code will be invoked every five minutes (or however often you've
set checkpoints to be done).

This is coming from

    xldir = opendir(XLogDir);
    if (xldir == NULL)
        elog(STOP, "MoveOfflineLogs: cannot open xlog dir: %m");

in src/backend/access/transam/xlog.c.  XLogDir is a static variable that
shouldn't ever change after postmaster bootup; I wonder if it's getting
corrupted somehow?  You might try altering the elog call to include the
value of XLogDir so we can check:

        elog(STOP, "MoveOfflineLogs: cannot open xlog dir (%s): %m",
             XLogDir);

(7.2 already is coded that way, btw.)

Another question: what the heck does EINVAL mean for opendir, anyway?
The HPUX and Linux man pages for opendir don't list it as a possible
error code at all.

            regards, tom lane

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

Предыдущее
От: Brent Verner
Дата:
Сообщение: Re: COPY when 'filename' is a directory
Следующее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Bug #562: create plpgsql language failed