Re: Status of FDW pushdowns

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Status of FDW pushdowns
Дата
Msg-id 22721.1385048662@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Status of FDW pushdowns  (Kohei KaiGai <kaigai@kaigai.gr.jp>)
Список pgsql-hackers
Kohei KaiGai <kaigai@kaigai.gr.jp> writes:
> Right now, it performs on relation scan or join only. However, we will be
> able to apply same concept on aggregation.
> For example, an aggregation node on a foreign table scan is a good
> candidate to push down because it can be replaced with a custom-
> logic that scans a materialized result of the remote aggregation query,
> if its cost is enough cheap than local aggregation.
> Probably, we need to add a hook and some logic to compare the
> built-in aggregation and alternative paths provided by extensions.

Note that this is another thing that's blocked on Path-ifying the work
now done in grouping_planner.  We don't currently have a way to represent
a local aggregation, much less a remote one, as a Path.  We definitely
need that before we can open up any of that logic to FDWs.
        regards, tom lane



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Kohei KaiGai
Дата:
Сообщение: Re: Status of FDW pushdowns
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Status of FDW pushdowns