Re: SELECT ignoring index even though ORDER BY and LIMIT present
От
Tom Lane
Тема
Re: SELECT ignoring index even though ORDER BY and LIMIT present
Дата
Msg-id
13218.1275518512@sss.pgh.pa.us
Ответ на
Re: SELECT ignoring index even though ORDER BY and
LIMIT present (Kevin Grittner)
Список
Дерево обсуждения
SELECT ignoring index even though ORDER BY and LIMIT present Jori Jovanovich <jori@dimensiology.com>
Re: SELECT ignoring index even though ORDER BY and
LIMIT present "Kevin Grittner" <Kevin.Grittner@wicourts.gov>
Re: SELECT ignoring index even though ORDER BY and LIMIT present Tom Lane <tgl@sss.pgh.pa.us>
Re: SELECT ignoring index even though ORDER BY and LIMIT present Bob Lunney <bob_lunney@yahoo.com>
Re: SELECT ignoring index even though ORDER BY and LIMIT
present Jori Jovanovich <jori@dimensiology.com>
Re: SELECT ignoring index even though ORDER BY and LIMIT
present Szymon Guz <mabewlun@gmail.com>
Re: SELECT ignoring index even though ORDER BY and LIMIT
present Matthew Wakeling <matthew@flymine.org>
"Kevin Grittner" writes: > Jori Jovanovich wrote: >> what is the recommended way to solve this? > The recommended way is to adjust your costing configuration to > better reflect your environment. Actually, it's probably not the costs so much as the row estimates. For instance, that first query was estimated to select 20 out of a possible 24 rows. If 24 is indeed the right number of matches, then the planner is right and the OP is wrong: the indexscan is going to have to traverse almost all of the table and therefore it will be a lot slower than seqscan + sort. Now, if the real number of matches is a lot more than that, then the indexscan would make sense because it could be expected to get stopped by the LIMIT before it has to traverse too much of the table. So the true problem is to get the rowcount estimate to line up with reality. Unfortunately the estimates for ~* are typically not very good. If you could convert that to plain ~ (case sensitive) it'd probably work better. Also, if this isn't a particularly modern version of Postgres, a newer version might do a bit better with the estimate. regards, tom lane
В списке pgsql-performance по дате отправления
От: Szymon Guz
Дата: