Re: Blocking excessively in FOR UPDATE - Mailing list pgsql-performance

From Claudio Freire
Subject Re: Blocking excessively in FOR UPDATE
Date
Msg-id CAGTBQpa-N+sQbgEzYfQWTDg643B3gf_83jOs0fMpfAC0QpDctg@mail.gmail.com
Whole thread Raw
In response to Re: Blocking excessively in FOR UPDATE  (Claudio Freire <klaussfreire@gmail.com>)
List pgsql-performance
On Fri, Nov 4, 2011 at 4:07 PM, Claudio Freire <klaussfreire@gmail.com> wrote:
>> Here again, you've set it to ten times the default value.  That
>> doesn't seem like a good idea.  I would start with the default and
>> tune down.
>
> Already did that. Waiting to see how it turns out.

Nope, still happening with those changes.

Though it did make sense that those settings were too high, it didn't
fix the strange blocking.

Is it possible that the query is locking all the tuples hit, rather
than only the ones selected?

Because the index used to reach the tuple has to walk across around 3k
tuples before finding the one that needs locking. They're supposed to
be in memory already (they're quite hot), that's why selecting is
fast, but maybe it's trying to lock all 3k tuples?

I don't know, I'm just throwing punches blindly at this point.

pgsql-performance by date:

Previous
From: Jay Levitt
Date:
Subject: Re: Predicates not getting pushed into SQL function?
Next
From: Jay Levitt
Date:
Subject: Subquery in a JOIN not getting restricted?