Re: making update/delete of inheritance trees scale better
Heikki Linnakangas <hlinnaka@iki.fi>
From: Heikki Linnakangas <hlinnaka@iki.fi>
To: Amit Langote <amitlangote09@gmail.com>, Tom Lane <tgl@sss.pgh.pa.us>
Cc: Robert Haas <robertmhaas@gmail.com>,
Ashutosh Bapat <ashutosh.bapat.oss@gmail.com>,
PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2020-10-30T20:35:48Z
Lists: pgsql-hackers
On 29/10/2020 15:03, Amit Langote wrote: > On Sun, Oct 4, 2020 at 11:44 AM Amit Langote <amitlangote09@gmail.com> wrote: >> On Fri, Sep 11, 2020 at 7:20 PM Amit Langote <amitlangote09@gmail.com> wrote: >>> Here are the commit messages of the attached patches: >>> >>> [PATCH v3 1/3] Overhaul how updates compute a new tuple >> >> I tried to assess the performance impact of this rejiggering of how >> updates are performed. As to why one may think there may be a >> negative impact, consider that ExecModifyTable() now has to perform an >> extra fetch of the tuple being updated for filling in the unchanged >> values of the update's NEW tuple, because the plan itself will only >> produce the values of changed columns. >> > ... >> It seems clear that the saving on the target list computation overhead >> that we get from the patch is hard to ignore in this case. >> >> I've attached updated patches, because as Michael pointed out, the >> previous version no longer applies. > > Rebased over the recent executor result relation related commits. I also did some quick performance testing with a simple update designed as a worst-case scenario: create unlogged table tab (a int4, b int4); insert into tab select g, g from generate_series(1, 10000000) g; \timing on vacuum tab; update tab set b = b, a = a; Without the patch, the update takes about 7.3 s on my laptop, and about 8.3 s with the patch. In this case, the patch fetches the old tuple, but it wouldn't really need to, because all the columns are updated. Could we optimize that special case? In principle, it would sometimes also make sense to add the old columns to the targetlist like we used to, to avoid the fetch. But estimating when that's cheaper would be complicated. Despite that, I like this new approach a lot. It's certainly much nicer than inheritance_planner(). - Heikki
Commits
-
Rework planning and execution of UPDATE and DELETE.
- 86dc90056dfd 14.0 landed
-
Faster expression evaluation and targetlist projection.
- b8d7f053c5c2 10.0 cited