Re: Row level locking - Mailing list pgsql-general

From Michael Fuhr
Subject Re: Row level locking
Date
Msg-id 20051012152942.GA9201@winnie.fuhr.org
Whole thread Raw
In response to Re: Row level locking  (Lincoln Yeoh <lyeoh@pop.jaring.my>)
Responses Re: Row level locking  (Carlos Benkendorf <carlosbenkendorf@yahoo.com.br>)
List pgsql-general
On Wed, Oct 12, 2005 at 09:30:50PM +0800, Lincoln Yeoh wrote:
> will "lock sometable nowait" help?
>
> http://developer.postgresql.org/docs/postgres/sql-lock.html
>
> If it fails, something is in progress.

And if it succeeds then it might hurt the performance of concurrent
transactions, depending on which lock mode you use.  Using SELECT
FOR UPDATE with a statement timeout might have less impact if you
only need to work with certain rows, and 8.1 will have SELECT FOR
{ UPDATE | SHARE } [ NOWAIT ].

Carlos, you said the applications were doing only inserts.  Is that
right?  Have you investigated what's causing the blocking?  Do the
rows you're inserting have foreign key references?  Let's find out
what the problem is before suggesting how to solve it.

--
Michael Fuhr

pgsql-general by date:

Previous
From: "Larry Rosenman"
Date:
Subject: Re: Cannot compile on Slackware 10.2
Next
From: "codeWarrior"
Date:
Subject: Re: user privilages for executing pg_autovacuum?