Re: PostgreSQL 9.3.4 Query Problems

From: Emre Hasegeli <emre(at)hasegeli(dot)com>
To: "Burgess, Freddie" <FBurgess(at)Radiantblue(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: PostgreSQL 9.3.4 Query Problems
Date: 2014-07-21 15:33:49
Message-ID: 20140721153349.GA66435@hasegeli-2.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

> Query planner is not selecting the most efficient index, can anything be done to correct this problem?

Trimmed explain outputs:

> -> Index Scan using sidx_sponser_report_y2014m06
> Index Cond: (sponser_location && ...
> Filter: ((origin_date_time >= ...
> Rows Removed by Filter: 3849011
> Total runtime: 63913.610 ms

> -- Then I disable the spatial index

> -> Index Scan using idx_sessiondatetime_rpi_sponser_report_y2014m06
> Index Cond: ((session_uid = ...
> Filter: ((sponser_location && ...
> Rows Removed by Filter: 1128161
> Total runtime: 1124.355 ms

It looks like a problem caused by selectivity estimation. PostgreSQL
will choose the index which will return less rows. The second index
actually returns less rows than the first one, but probably
PostgreSQL does not know about it. There is more chance that
the selectivity estimation function of the && operator misguides
the planner. I do not know about PostGIS, but selectivity estimation
functions for geometrical data types in the core are just stubs
returning constants. So, I would not expect much.

Best solution I can think of is to avoid that kind of queries.

pgsql-general@, pgsql-performance@ or maybe PostGIS mailing lists
seems like a better place to ask for help.

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Andres Freund 2014-07-21 16:12:22 Re: pg_upgrade < 9.3 -> >=9.3 misses a step around multixacts
Previous Message Alvaro Herrera 2014-07-21 15:27:28 Re: pg_upgrade < 9.3 -> >=9.3 misses a step around multixacts