Parallel appendrel scans?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Parallel appendrel scans?
Date: 2016-07-03 22:58:06
Message-ID: 7358.1467586686@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

It looks to me like set_append_rel_pathlist builds a partial path for
an appendrel only if there exist partial paths for all members of the
appendrel. I don't understand this restriction. Why could you not
build it from a regular path for each appendrel child? You'd have
to farm out entire childrels to workers, which might be larger chunks
of work than one could wish, but it seems better than failing to
parallelize at all.

regards, tom lane

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Craig Ringer 2016-07-04 00:21:23 Re: Docs, backups, and MS VSS
Previous Message Tom Lane 2016-07-03 22:46:17 Re: fixing subplan/subquery confusion