[COMMITTERS] pgsql: Allow for parallel execution whenever ExecutorRun() is doneonly - Mailing list pgsql-committers

From Robert Haas
Subject [COMMITTERS] pgsql: Allow for parallel execution whenever ExecutorRun() is doneonly
Date
Msg-id E1cr6Rx-0000yk-32@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow for parallel execution whenever ExecutorRun() is done only once.

Previously, it was unsafe to execute a plan in parallel if
ExecutorRun() might be called with a non-zero row count.  However,
it's quite easy to fix things up so that we can support that case,
provided that it is known that we will never call ExecutorRun() a
second time for the same QueryDesc.  Add infrastructure to signal
this, and cross-checks to make sure that a caller who claims this is
true doesn't later reneg.

While that pattern never happens with queries received directly from a
client -- there's no way to know whether multiple Execute messages
will be sent unless the first one requests all the rows -- it's pretty
common for queries originating from procedural languages, which often
limit the result to a single tuple or to a user-specified number of
tuples.

This commit doesn't actually enable parallelism in any additional
cases, because currently none of the places that would be able to
benefit from this infrastructure pass CURSOR_OPT_PARALLEL_OK in the
first place, but it makes it much more palatable to pass
CURSOR_OPT_PARALLEL_OK in places where we currently don't, because it
eliminates some cases where we'd end up having to run the parallel
plan serially.

Patch by me, based on some ideas from Rafia Sabih and corrected by
Rafia Sabih based on feedback from Dilip Kumar and myself.

Discussion: http://postgr.es/m/CA+TgmobXEhvHbJtWDuPZM9bVSLiTj-kShxQJ2uM5GPDze9fRYA@mail.gmail.com

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/691b8d59281b5177f16fe80858df921f77a8e955

Modified Files
--------------
contrib/auto_explain/auto_explain.c             |  9 +++---
contrib/pg_stat_statements/pg_stat_statements.c |  9 +++---
src/backend/commands/copy.c                     |  2 +-
src/backend/commands/createas.c                 |  2 +-
src/backend/commands/explain.c                  |  2 +-
src/backend/commands/extension.c                |  2 +-
src/backend/commands/matview.c                  |  2 +-
src/backend/commands/portalcmds.c               |  2 +-
src/backend/commands/prepare.c                  |  2 +-
src/backend/executor/execMain.c                 | 38 +++++++++++++++++--------
src/backend/executor/execParallel.c             |  2 +-
src/backend/executor/functions.c                |  2 +-
src/backend/executor/spi.c                      |  2 +-
src/backend/tcop/postgres.c                     |  2 ++
src/backend/tcop/pquery.c                       | 20 ++++++++++---
src/include/executor/execdesc.h                 |  3 ++
src/include/executor/executor.h                 |  7 +++--
src/include/tcop/pquery.h                       |  2 +-
src/include/utils/portal.h                      |  1 +
19 files changed, 73 insertions(+), 38 deletions(-)


pgsql-committers by date:

Previous
From: Teodor Sigaev
Date:
Subject: [COMMITTERS] pgsql: Reduce page locking in GIN vacuum
Next
From: Peter Eisentraut
Date:
Subject: [COMMITTERS] pgsql: Remove createlang and droplang