Re: Vacuum problem in my system ?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Fabrice Scemama <fabrices(at)ximmo(dot)ftd(dot)fr>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Vacuum problem in my system ?
Date: 2000-06-05 16:19:56
Message-ID: 12539.960221996@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Fabrice Scemama <fabrices(at)ximmo(dot)ftd(dot)fr> writes:
> [ vacuum appears to be coredumping ]

That's odd ... not so much that vacuum could be failing, which is
probably a garden-variety bug; but it sounds like the postmaster is
failing to do the system restart that it should do after one of the
backends fails. Is there anything showing up in the postmaster log
when this happens?

As for tracking the immediate vacuum problem, the failed backend
should have left a core dump file in the database directory
(.../data/base/DBNAME/core). Can you get a backtrace from that
with gdb? Something like
gdb path/to/postgres path/to/core
bt
quit
should do.

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Rob S. 2000-06-05 16:41:40 RE: Default timestamp value
Previous Message Tom Lane 2000-06-05 15:55:26 Re: SQL functions - bug?