Re: Table locking problems? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Table locking problems?
Date
Msg-id 18199.1123614486@sss.pgh.pa.us
Whole thread Raw
In response to Re: Table locking problems?  ("Joshua D. Drake" <jd@commandprompt.com>)
Responses Re: Table locking problems?
List pgsql-performance
"Joshua D. Drake" <jd@commandprompt.com> writes:
> My experience is that when this type of thing happens it is typically
> specific queries that cause the problem. If you turn on statement
> logging you can get the exact queries and debug from there.

> Here are some things to look for:

> Is it a large table (and thus large indexes) that it is updating?
> Is the query using indexes?
> Is the query modifying ALOT of rows?

Another thing to look at is foreign keys.  Dan could be running into
problems with an update on one side of an FK being blocked by locks
on the associated rows on the other side.

            regards, tom lane

pgsql-performance by date:

Previous
From: Steve Poe
Date:
Subject: Re: Table locking problems?
Next
From: Dan Harris
Date:
Subject: Re: Table locking problems?