Re: Indexes and statistics - Mailing list pgsql-sql

From Tom Lane
Subject Re: Indexes and statistics
Date
Msg-id 20690.1077081005@sss.pgh.pa.us
Whole thread Raw
In response to Indexes and statistics  ("David Witham" <davidw@unidial.com.au>)
List pgsql-sql
"David Witham" <davidw@unidial.com.au> writes:
> One of the customers is quite large (8.3% of the records):

Hmm.  Unless your rows are quite wide, a random sampling of 8.3% of the
table would be expected to visit every page of the table, probably
several times.  So the planner's cost estimates do not seem out of line
to me; an indexscan *should* be slow.  The first question to ask is why
the deviation from reality.  Are the rows for that customer ID likely to
be physically concentrated into a limited number of physical pages?
Do you have so much RAM that the whole table got swapped in, eliminating
the extra I/O that the planner is expecting?
        regards, tom lane


pgsql-sql by date:

Previous
From: "David Witham"
Date:
Subject: Indexes and statistics
Next
From: sad
Date:
Subject: Re: bytea or blobs?