From: | Robert Haas <rhaas(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Be lazier about partition tuple routing. |
Date: | 2018-02-22 16:10:54 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Be lazier about partition tuple routing.
It's not necessary to fully initialize the executor data structures
for partitions to which no tuples are ever routed. Consider, for
example, an INSERT statement that inserts only one row: it only cares
about the partition to which that one row is routed. The new function
ExecInitPartitionInfo performs the initialization in question only
when a particular partition is about to receive a tuple. This includes
creating, validating, and saving a pointer to the ResultRelInfo,
setting up for speculative insertions, translating WCOs and
initializing the resulting expressions, translating returning lists
and building the appropriate projection information, and setting up a
tuple conversion map.
One thing that's not deferred is locking the child partitions; that
seems desirable but would need more thought. Still, testing shows
that this makes single-row inserts significantly faster on a table
with many partitions without harming the bulk-insert case.
Amit Langote, reviewed by Etsuro Fujita, with a few changes by me
Discussion: http://postgr.es/m/[email protected]
Branch
------
master
Modified Files
--------------
src/backend/commands/copy.c | 10 +-
src/backend/executor/execPartition.c | 359 +++++++++++++++++++++++----------
src/backend/executor/nodeModifyTable.c | 133 +-----------
src/include/executor/execPartition.h | 9 +-
4 files changed, 279 insertions(+), 232 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Eisentraut | 2018-02-22 16:40:26 | pgsql: Add user-callable SHA-2 functions |
Previous Message | Robert Haas | 2018-02-22 15:09:34 | pgsql: Remove extra word from comment. |