Re: server stopped running abnormally

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Phil Frost <indigo(at)bitglue(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: server stopped running abnormally
Date: 2006-07-28 03:48:16
Message-ID: 15940.1154058496@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Phil Frost <indigo(at)bitglue(dot)com> writes:
> Things were crusing along just fine as I can tell, and then all the
> postgresql processes terminated. This is all I see in the logs:

> LOG: received immediate shutdown request

Something sent the postmaster a SIGQUIT signal. You need to look into
what might have done that.

> I have a nightly cron job that runs "vacuumdb --all --full --analyze
> --quiet" which failed a few days ago with this:

> vacuumdb: vacuuming of database "dew" failed: ERROR: buffer 126 is not owned by resource owner TopTransaction
> PANIC: cannot abort transaction 478973, it was already committed

The PANIC is a known problem with VACUUM FULL: it commits its
transaction before it's really done processing, and so if it gets an
error after that point it's up the creek without a paddle. But I'm not
sure what could have caused the "not owned by" error in the first place.
Don't suppose you can reproduce the problem?

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2006-07-28 03:54:43 Re: BUG #2553: Outer join bug
Previous Message Stephan Szabo 2006-07-28 03:22:15 Re: BUG #2553: Outer join bug