Re: Weird index or sort behaviour - Mailing list pgsql-performance

From Tom Lane
Subject Re: Weird index or sort behaviour
Date
Msg-id 27347.1250622592@sss.pgh.pa.us
Whole thread Raw
In response to Re: Weird index or sort behaviour  (Matthew Wakeling <matthew@flymine.org>)
Responses Re: Weird index or sort behaviour  (Matthew Wakeling <matthew@flymine.org>)
List pgsql-performance
Matthew Wakeling <matthew@flymine.org> writes:
>                 ->  Index Scan using locationbin8000__subjectobjectbin on locationbin8000 l1
>                       (cost=0.00..71635.23 rows=657430 width=20)
>                       (actual time=0.056..170.857 rows=664588 loops=1)
>                       Index Cond: (subjecttype = 'GeneFlankingRegion'::text)
>                 ->  Index Scan using locationbin8000__subjectobjectbin on locationbin8000 l2
>                       (cost=0.00..71635.23 rows=657430 width=20)
>                       (actual time=0.020..9594.466 rows=38231659 loops=1)
>                       Index Cond: (l2.subjecttype = 'GeneFlankingRegion'::text)

>  ... So on average, we will be rewinding by 57 rows each time.

As indeed is reflected in those actual rowcounts.  (The estimated
counts and costs don't include re-fetching, but the actuals do.)

Even more interesting, the actual runtime is about 56x different too,
which implies that Matthew's re-fetches are not noticeably cheaper than
the original fetches.  I'd be surprised if that were true in an
indexscan pulling from disk (you'd expect recently-touched rows to stay
cached for awhile).  But it could easily be true if the whole table were
cached already.  Matthew, how big is this table compared to your RAM?
Were you testing a case in which it'd be in cache?

            regards, tom lane

pgsql-performance by date:

Previous
From: Matthew Wakeling
Date:
Subject: Re: Weird index or sort behaviour
Next
From: Karl Denninger
Date:
Subject: SQL Query Performance - what gives?