Re: patch: SQL/MED(FDW) DDL

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: patch: SQL/MED(FDW) DDL
Дата
Msg-id AANLkTinEwo9kcE0FYaGATGmwurTN7AiWeQzZ1=oY3djc@mail.gmail.com
обсуждение исходный текст
Ответ на Re: patch: SQL/MED(FDW) DDL  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: patch: SQL/MED(FDW) DDL  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Tue, Oct 5, 2010 at 11:06 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Robert Haas <robertmhaas@gmail.com> writes:
>> On Tue, Oct 5, 2010 at 10:41 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>>> (I'd also say that your performance estimate is miles in advance of any
>>> facts; but even if it's true, the caching ought to be inside the FDW,
>>> because we have no clear idea of what it will need to cache.)
>
>> I can't imagine how an FDW could possibly be expected to perform well
>> without some persistent local data storage.  Even assume the remote
>> end is PG.  To return a cost, it's going to need the contents of
>> pg_statistic cached locally, for each remote table.
>
> Or it could ask the remote side.

FWIW, I mentioned that option in that part you didn't quote.

>> Do you really
>> think it's going to work to incur that overhead once per table per
>> backend startup?
>
> If you have a cache, how are you going to manage updates of it?

I'm not.  I'm going to let the FDW determine how often it would like
to refresh its cache, as well as what it would like to cache and in
what format it would like to cache it.

> IMO this is a *clear* case of premature optimization being the root of
> all evil.  We should get it working first and then see what needs to be
> optimized by measuring, rather than guessing in a vacuum.

I have no problem with punting the issue of remote statistics to some
time in the future.  But I don't think we should have a half-baked
implementation of remote statistics.  We should either do it right
(doing such testing as is necessary to establish what that means) or
not do it at all.  Frankly, if we could get from where we are today to
a workable implementation of this technology for CSV files in time for
9.1, I think that would be an impressive accomplishment.  Making it
work for more complicated cases is almost certainly material for 9.2,
9.3, 9.4, and maybe further out than that.

> (BTW, if the remote end is PG I would hardly think that we'd send SQL
> queries at all.  If we're interested in micro-optimization, we'd devise
> some lower-level protocol.)

Interesting.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise Postgres Company


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: configure gaps
Следующее
От: Robert Haas
Дата:
Сообщение: Re: standby registration (was: is sync rep stalled?)