On 07.05.2012 18:51, Tom Lane wrote:
Heikki Linnakangas<heikki.linnakan...@enterprisedb.com>  writes:
We could rearrange the page splitting algorithm to release locks
earlier, before traversing to the next parent level.

That seems like a good idea just on concurrency grounds; I'm worried
about both the performance implications and the risk of deadlock.

Ok, committed a patch to release locks earlier when recursing up the tree.

This still doesn't completely eliminate the problem: when a page is split into more than two halves, the downlinks are inserted separately for each of the extra right pages. While that's done, the rest of the siblings are kept locked. So in effect, we still have the same issue when all the splits are 3 (or more)-way splits. I'm not going to try fixing that now, because it's an exceedingly rare corner-case, and would be rather difficult to fix.

--
  Heikki Linnakangas
  EnterpriseDB   http://www.enterprisedb.com

--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

Reply via email to