Обсуждение: Database in recovery mode

Поиск
Список
Период
Сортировка

Database in recovery mode

От
"Michael Richards"
Дата:
Hi.

I've got a postgres system that keeps going into recovery mode. I 
can't really find any docs on this. All of the postgres processes 
will be in the STOP state and when I try to connect it will say "The 
database is in recovery mode".

I suspect there is a query that is causing it to crash in some 
specific way that causes it. This is happening about once per day.

Any ideas?

-Michael
_________________________________________________________________    http://fastmail.ca/ - Fast Free Web Email for
Canadians

Re: Database in recovery mode

От
Tom Lane
Дата:
"Michael Richards" <michael@fastmail.ca> writes:
> I've got a postgres system that keeps going into recovery mode. I 
> can't really find any docs on this. All of the postgres processes 
> will be in the STOP state and when I try to connect it will say "The 
> database is in recovery mode".

> I suspect there is a query that is causing it to crash in some 
> specific way that causes it. This is happening about once per day.

Sounds like that to me too.  Are any core dump files showing up in the
database directory (PGDATA/base/DBNAME/core)?  If so a stack trace
from the corefile would be informative.  Also, make sure you are
collecting a postmaster log --- do NOT start the postmaster with -S,
instead direct its stdout and stderr into a logfile --- and see if
anything interesting is recorded therein.  You might want to start the
postmaster with -d2 so that the actual queries are logged too.
        regards, tom lane