From: | "Andrey V(dot) Lepikhov" <a(dot)lepikhov(at)postgrespro(dot)ru> |
---|---|
To: | Ashutosh Bapat <ashutosh(dot)bapat(at)2ndquadrant(dot)com> |
Cc: | Ashutosh Bapat <ashutosh(dot)bapat(dot)oss(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Stephen Frost <sfrost(at)snowman(dot)net>, Bruce Momjian <bruce(at)momjian(dot)us>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, Etsuro Fujita <etsuro(dot)fujita(at)gmail(dot)com>, Jeff Janes <jeff(dot)janes(at)gmail(dot)com> |
Subject: | Re: Ideas about a better API for postgres_fdw remote estimates |
Date: | 2020-09-07 11:37:00 |
Message-ID: | 6b172580-4c6b-8009-baf2-7cf1e71837e5@postgrespro.ru |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 9/4/20 6:23 PM, Ashutosh Bapat wrote:
>
>
> On Thu, 3 Sep 2020 at 10:44, Andrey V. Lepikhov
> <a(dot)lepikhov(at)postgrespro(dot)ru <mailto:a(dot)lepikhov(at)postgrespro(dot)ru>> wrote:
>
> On 8/31/20 6:19 PM, Ashutosh Bapat wrote:
> > On Mon, Aug 31, 2020 at 3:36 PM Andrey V. Lepikhov
> > <a(dot)lepikhov(at)postgrespro(dot)ru <mailto:a(dot)lepikhov(at)postgrespro(dot)ru>> wrote:
> >>
> >> Thanks for this helpful feedback.
> > I think the patch has some other problems like it works only for
> > regular tables on foreign server but a foreign table can be pointing
> > to any relation like a materialized view, partitioned table or a
> > foreign table on the foreign server all of which have statistics
> > associated with them. I didn't look closely but it does not consider
> > that the foreign table may not have all the columns from the relation
> > on the foreign server or may have different names. But I think those
> > problems are kind of secondary. We have to agree on the design first.
> >
> In accordance with discussion i made some changes in the patch:
> 1. The extract statistic routine moved into the core.
>
>
> Bulk of the patch implements the statistics conversion to and fro json
> format. I am still not sure whether we need all of that code here.
Yes, i'm sure we'll replace it with something.
Right now, i want to discuss format of statistics dump. Remind, that a
statistics dump is needed not only for fdw, but it need for the pg_dump.
And in the dump will be placed something like this:
'SELECT store_relation_statistics(rel, serialized_stat)'
my reasons for using JSON:
* it have conversion infrastructure like json_build_object()
* this is flexible readable format, that can be useful in text dumps of
relations.
> Can we re-use pg_stats view? That is converting some of the OIDs to names. I
> agree with anyarray but if that's a problem here it's also a problem for
> pg_stats view, isn't it?
Right now, I don't know if it is possible to unambiguously convert the
pg_stats information to a pg_statistic tuple.
> If we can reduce the stats handling code to a
> minimum or use it for some other purpose as well e.g. pg_stats
> enhancement, the code changes required will be far less compared to the
> value that this patch provides.
+1
--
regards,
Andrey Lepikhov
Postgres Professional
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2020-09-07 11:40:47 | Re: A micro-optimisation for walkdir() |
Previous Message | Bharath Rupireddy | 2020-09-07 11:00:59 | Logical Replication - detail message with names of missing columns |