Re: Forcing the use of particular execution plans - Mailing list pgsql-performance

From Dave Dutcher
Subject Re: Forcing the use of particular execution plans
Date
Msg-id 007b01c6e24c$ccfc8190$8300a8c0@tridecap.com
Whole thread Raw
In response to Forcing the use of particular execution plans  ("Tim Truman" <tim@advam.com>)
Responses Re: Forcing the use of particular execution plans  ("Jim C. Nasby" <jim@nasby.net>)
Re: Forcing the use of particular execution plans  ("Tim Truman" <tim@advam.com>)
List pgsql-performance
> -----Original Message-----
> From: pgsql-performance-owner@postgresql.org
[mailto:pgsql-performance-owner@postgresql.org] On Behalf Of  Tim Truman
>
> Hi,
>
> I have the following query which has been running very slowly
> and after a
> lot of testing/trial and error I found an execution plan that
> ran the query
> in a fraction of the time (and then lost the statistics that
> produced it).
> What I wish to know is how to force the query to use the
> faster execution
> plan.

It would be a bit easier to diagnose the problem if you posted EXPLAIN
ANALYZE rather than just EXPLAIN.  The two plans you posted looked very
similar except for the order of the nested loop in subquery 1 and an index
scan rather than a seq scan in subquery 2.

My guess would be that the order of the nested loop is determined mostly by
estimates of matching rows.  If you ran an EXPLAIN ANALYZE you could tell if
the planner is estimating correctly.  If it is not, you could try increasing
your statistics target and running ANALYZE.

To make the planner prefer an index scan over a seq scan, I would first
check the statistics again, and then you can try setting enable_seqscan to
false (enable_seqscan is meant more for testing than production) or, you
could try reducing random_page_cost, but you should test that against a
range of queries before putting it in production.

Dave


pgsql-performance by date:

Previous
From: Tobias Brox
Date:
Subject: Re: Merge Join vs Nested Loop
Next
From: Edoardo Ceccarelli
Date:
Subject: autovacuum on a -mostly- r/o table