Re: Experimental evaluation of PostgreSQL's query optimizer - Mailing list pgsql-hackers

From Jim Nasby
Subject Re: Experimental evaluation of PostgreSQL's query optimizer
Date
Msg-id 567AF97F.3050603@BlueTreble.com
Whole thread Raw
In response to Re: Experimental evaluation of PostgreSQL's query optimizer  (Craig Ringer <craig@2ndquadrant.com>)
Responses Re: Experimental evaluation of PostgreSQL's query optimizer  (Craig Ringer <craig@2ndquadrant.com>)
List pgsql-hackers
On 12/21/15 7:49 PM, Craig Ringer wrote:
> CREATE JOIN STATISTICS ON t1 JOIN t2 USING (somecol);
>
>
> That way we let an admin who's tuning queries direct effort at problem
> areas. It's not automagical, but it's an area where tools could analyze
> pg_stat_statements to direct effort, much like is currently done for
> index creation. Like index creation I don't think it's practical to do
> this entirely automatically and behind the scenes since collecting the
> stats for all possibilities rapidly gets prohibitive.

There's an extremely common case that could (and IMO should) be 
automated though, which is computing these statistics for all foreign 
keys. We can have a way to disable that for specific keys if necessary, 
but I'd bet it's extremely rare to have a FK that you never join on.
-- 
Jim Nasby, Data Architect, Blue Treble Consulting, Austin TX
Experts in Analytics, Data Architecture and PostgreSQL
Data in Trouble? Get it in Treble! http://BlueTreble.com



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: WIP: Fix parallel workers connection bug in pg_dump (Bug #13727)
Next
From: Jim Nasby
Date:
Subject: Re: Experimental evaluation of PostgreSQL's query optimizer