Re: [GENERAL] Queries are taking way longer in 9.6 than 9.5 - Mailing list pgsql-general

From Tomas Vondra
Subject Re: [GENERAL] Queries are taking way longer in 9.6 than 9.5
Date
Msg-id bf32da61-da56-d400-9537-d3fc01bac07b@2ndquadrant.com
Whole thread Raw
In response to Re: [GENERAL] Queries are taking way longer in 9.6 than 9.5  (Merlin Moncure <mmoncure@gmail.com>)
Responses Re: [GENERAL] Queries are taking way longer in 9.6 than 9.5
List pgsql-general
On 01/19/2017 06:21 AM, Merlin Moncure wrote:
 >
...
>
> yes.  Either way, I would like to very much understand how server is
> preferring 3m cost plan to 2.6k cost plan or is otherwise unable to
> access the cheap plan.
>

Perhaps it doesn't even see the 2.6k cost - it may not generate the plan
for some reason, or it arrives to different estimates.

The OP was repeatedly asked for details of the configuration, I've even
sent a query for doing that a few days back. It's difficult to help when
such basic info is not provided, though.

It'd also be interesting to see the statistics for the tables involved,
so something like

    SELECT * FROM pg_stats WHERE tablename IN (... tables ...)

and

    SELECT relname, relpages, reltuples, relallvisible
      FROM pg_class WHERE relame IN (... tables ...)

might shed some light on what the planner assumes about the data.

Of course, there are other things we might need to know. For example if
there are foreign keys between the tables, 9.6 is using that for the
estimates (unlike 9.5). And so on.

regards

--
Tomas Vondra                  http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


pgsql-general by date:

Previous
From: Merlin Moncure
Date:
Subject: Re: [GENERAL] Queries are taking way longer in 9.6 than 9.5
Next
From: Julian Paul
Date:
Subject: [GENERAL] Can we not give tyrannical pedants control of #postgresql?