Re: psql is hanging - Mailing list pgsql-general

From Chris Mair
Subject Re: psql is hanging
Date
Msg-id 285ebefdfdbaffaae8812c5ed1e695ef@smtp.hushmail.com
Whole thread Raw
In response to psql is hanging  (John Smith <localdevjs@gmail.com>)
Responses Re: psql is hanging
Re: psql is hanging
List pgsql-general
> We're kind of pulling out our hair here, any ideas?

You might try issuing the command

   analyze;

right *before* the command that hangs.

The rationale behind this idea is that your script changed data
and the "hung" command uses a wrong plan based on outdated statistics.
By the time you run it manually it would be fast again, because in the
mean time the statistics have been updated automatically.

Analyze forces an immediate update of the statistics on the whole
database.

This can by itself take some time according to size of the
database. If my idea works, you can then further optimize by
doing analyze only on the changed tables.

Bye,
Chris.




pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: psql is hanging
Next
From: Chris Mair
Date:
Subject: Re: psql is hanging