Re: [PoC] Asynchronous execution again (which is not parallel)

From: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>
To: Kyotaro HORIGUCHI <horiguchi(dot)kyotaro(at)lab(dot)ntt(dot)co(dot)jp>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [PoC] Asynchronous execution again (which is not parallel)
Date: 2015-12-01 15:03:02
Message-ID: CAA4eK1LBwj7heY8pxRmMCOLhuMFr81TLHck-+ByBFuUADgeu+A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, Nov 30, 2015 at 6:17 PM, Kyotaro HORIGUCHI <
horiguchi(dot)kyotaro(at)lab(dot)ntt(dot)co(dot)jp> wrote:
>
>
> ====== TODO or random thoughts, not restricted on this patch.
>
> - This patch doesn't contain planner part, it must be aware of
> async execution in order that this can be in effective.
>

How will you decide whether sync-execution is cheaper than parallel
execution. Do you have some specific cases in mind where async
execution will be more useful than parallel execution?

>
> - Some measture to control execution on bgworker would be
> needed. At least merge join requires position mark/reset
> functions.
>
> - Currently, more tuples make reduce effectiveness of parallel
> execution, some method to transfer tuples in larger unit would
> be needed, or would be good to have shared workmem?
>

Yeah, I think here one thing we need to figure out is whether the
performance bottleneck is due to the amount of data that is transferred
between worker and master or something else. One idea could be to pass
TID and may be keep the buffer pin (which will be released by master
backend), but on the other hand if we have to perform costly target list
evaluation by bgworker, then it might be beneficial to pass the projected
list back.

With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Shulgin, Oleksandr 2015-12-01 15:21:13 More stable query plans via more predictable column statistics
Previous Message Teodor Sigaev 2015-12-01 14:52:39 Re: Cube extension kNN support