Re: Postmaster crash - Mailing list pgsql-bugs

From Tom Lane
Subject Re: Postmaster crash
Date
Msg-id 23442.1011278481@sss.pgh.pa.us
Whole thread Raw
In response to Postmaster crash  ("Michael Beckstette" <mbeckste@TechFak.Uni-Bielefeld.DE>)
List 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 by date:

Previous
From: Brent Verner
Date:
Subject: Re: COPY when 'filename' is a directory
Next
From: pgsql-bugs@postgresql.org
Date:
Subject: Bug #562: create plpgsql language failed