Re: Index usage with slow query - Mailing list pgsql-general

From Bill Moran
Subject Re: Index usage with slow query
Date
Msg-id 20140723105701.71e84ff9e61910ec7eac6b6a@potentialtech.com
Whole thread Raw
In response to Index usage with slow query  (Rebecca Clarke <r.clarke83@gmail.com>)
Responses Re: Index usage with slow query  (Rebecca Clarke <r.clarke83@gmail.com>)
List pgsql-general
On Wed, 23 Jul 2014 10:45:56 +0100
Rebecca Clarke <r.clarke83@gmail.com> wrote:

> Hi all,
>
> Looking for some advice regarding a slow query I have and indexing.
>
> I'm using postgresql 9.1 and this is my table that has around 6800000 rows:
>
> CREATE TABLE mytable
> (
>   class character varying,
>   floor character varying,
>   source_id integer,
>   the_geom geometry
> )
> WITH (
>   OIDS=TRUE
> );
>
>
> INDEX idx_source_id
>     USING btree
>   (source_id);
>
> INDEX idx_the_geom_gist
>   USING gist
>   (the_geom);
>
>
> This table is constantly hit with the below query (not always the same
> values in the where). The only difference between queries are the values in
> the where clause:
>
> SELECT the_geom,oid from mytable
> WHERE
> the_geom && ST_GeomFromText('POLYGON((529342.334095833
> 180696.221733333,529342.334095833 181533.44595,530964.336820833
> 181533.44595,530964.336820833 180696.221733333,529342.334095833
> 180696.221733333))',find_srid('','mytable','the_geom'))
> AND
> (floor = 'gf' AND source_id = '689' AND class = 'General')
>
>
> As the table has increased in size, this query has become slower, so I made
> this index:
>
>
> INDEX idx_floor_sourceid_class
>   USING btree
>   (floor, source_id, class);
>
>
> When I run an EXPLAIN and EXPLAIN ANALYZE the query isn't using this new
> index.
>
> Sometimes it uses just idx_the_geom_gist
>
> other times it uses idx_the_geom_gist and idx_source_id
>
>
> I don't understand why it's inconsistent in its use of indexes when the
> query is always the same structure, just different where clause values, and
> I don't understand why it's not using the new index either.

It depends on the data.  The planner will make estimates on what the fastest
way to execute will be based on a lot of things, one of which is how helpful
an index is really expected to be.  Since your indexes aren't arranged to
allow an index-only scan (although I don't remember if 9.1 had index-only
scans yet ...) it will have to use the index to narrow down the rows, then
load up the rows and filter them further (you didn't provide explain output,
but I'll bet a dozen nickels that's what it says).  So if the values in
source_id are unique enough that the planner doesn't think that
idx_floor_sourceid_class will narrow the results any better than
idx_source_id, it will use the former because it's a smaller index and will
require less disk fetches to load it.

Of course, without explain output, I'm assuming a lot.  But the basic operation
still stands, indexes aren't always guaranteed to be faster than other types of
access.  And depending on the distribution of the data, some indexes might be
faster with some fetches than with others.

The key is not whether it's using the index or not, it's whether it's getting the
fastest plan or not.  The first step in ensuring that is to make sure the table
is getting analyzed frequently enough, otherwise the stats that the planner uses
to predict will be off and it will often choose poor plans.  The next step would
be to isolate specific instances that you're suspicious of and test to see if the
planner really is getting the best plan.  Hopefully you have a test database where
you can copy the data and add/remove indexes at will.  That type of easter egg
hunt may not be necessary, though.  EXPLAIN ANALYZE can often tell you if the plan
is bad by showing you where estimated times vary wildly from actual times.

Hope this helps, but before you worry too much about it, I'd suggest asking
yourself 1 question: is the performance at an acceptable level, even if you don't
understand the rational behind the planner's choice?  Of course, that may not be
important if you're asking the question just to understand better.

--
Bill Moran <wmoran@potentialtech.com>


pgsql-general by date:

Previous
From: Eelke Klein
Date:
Subject: postgresql_fdw issues with triggers on the foreign tables
Next
From: Albe Laurenz
Date:
Subject: Re: postgresql_fdw issues with triggers on the foreign tables