]> granicus.if.org Git - postgresql/commitdiff
Avoid transferring parallel-unsafe subplans to parallel workers.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 12 Apr 2017 20:06:49 +0000 (16:06 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 12 Apr 2017 20:07:00 +0000 (16:07 -0400)
Commit 5e6d8d2bb allowed parallel workers to execute parallel-safe
subplans, but it transmitted the query's entire list of subplans to
the worker(s).  Since execMain.c blindly does ExecInitNode and later
ExecEndNode on every list element, this resulted in parallel-unsafe plan
nodes nonetheless getting started up and shut down in parallel workers.
That seems mostly harmless as far as core plan node types go (but
maybe not so much for Gather?).  But it resulted in postgres_fdw
opening and then closing extra remote connections, and it's likely
that other non-parallel-safe FDWs or custom scan providers would have
worse reactions.

To fix, just make ExecSerializePlan replace parallel-unsafe subplans
with NULLs in the cut-down plan tree that it transmits to workers.
This relies on ExecInitNode and ExecEndNode to do nothing on NULL
input, but they do anyway.  If anything else is touching the dropped
subplans in a parallel worker, that would be a bug to be fixed.
(This thus provides a strong guarantee that we won't try to do
something with a parallel-unsafe subplan in a worker.)

This is, I think, the last fix directly occasioned by Andreas Seltenreich's
bug report of a few days ago.

Tom Lane and Amit Kapila

Discussion: https://postgr.es/m/87tw5x4vcu.fsf@credativ.de

src/backend/executor/execParallel.c
src/include/nodes/plannodes.h

index 469a32c7b0d2e2cf8f19158d5c1b9ebeb1707a73..5fd4ee0b8249e9deda344165c7252c761d3e8a32 100644 (file)
@@ -123,7 +123,7 @@ static char *
 ExecSerializePlan(Plan *plan, EState *estate)
 {
        PlannedStmt *pstmt;
-       ListCell   *tlist;
+       ListCell   *lc;
 
        /* We can't scribble on the original plan, so make a copy. */
        plan = copyObject(plan);
@@ -137,9 +137,9 @@ ExecSerializePlan(Plan *plan, EState *estate)
         * accordingly.  This is sort of a hack; there might be better ways to do
         * this...
         */
-       foreach(tlist, plan->targetlist)
+       foreach(lc, plan->targetlist)
        {
-               TargetEntry *tle = (TargetEntry *) lfirst(tlist);
+               TargetEntry *tle = lfirst_node(TargetEntry, lc);
 
                tle->resjunk = false;
        }
@@ -162,7 +162,24 @@ ExecSerializePlan(Plan *plan, EState *estate)
        pstmt->rtable = estate->es_range_table;
        pstmt->resultRelations = NIL;
        pstmt->nonleafResultRelations = NIL;
-       pstmt->subplans = estate->es_plannedstmt->subplans;
+
+       /*
+        * Transfer only parallel-safe subplans, leaving a NULL "hole" in the list
+        * for unsafe ones (so that the list indexes of the safe ones are
+        * preserved).  This positively ensures that the worker won't try to run,
+        * or even do ExecInitNode on, an unsafe subplan.  That's important to
+        * protect, eg, non-parallel-aware FDWs from getting into trouble.
+        */
+       pstmt->subplans = NIL;
+       foreach(lc, estate->es_plannedstmt->subplans)
+       {
+               Plan       *subplan = (Plan *) lfirst(lc);
+
+               if (subplan && !subplan->parallel_safe)
+                       subplan = NULL;
+               pstmt->subplans = lappend(pstmt->subplans, subplan);
+       }
+
        pstmt->rewindPlanIDs = NULL;
        pstmt->rowMarks = NIL;
        pstmt->relationOids = NIL;
index d046e628702fe0c8d2ddd2e20639babafba4d785..cba915572ef6172f4ba0a362cf18463364ede847 100644 (file)
@@ -68,7 +68,8 @@ typedef struct PlannedStmt
        /* rtable indexes of non-leaf target relations for INSERT/UPDATE/DELETE */
        List       *nonleafResultRelations;
 
-       List       *subplans;           /* Plan trees for SubPlan expressions */
+       List       *subplans;           /* Plan trees for SubPlan expressions; note
+                                                                * that some could be NULL */
 
        Bitmapset  *rewindPlanIDs;      /* indices of subplans that require REWIND */