Re: Query optimization using order by and limit

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Query optimization using order by and limit
Дата
Msg-id 8338.1316989350@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Query optimization using order by and limit  (Stephen Frost <sfrost@snowman.net>)
Ответы Re: Query optimization using order by and limit
Список pgsql-performance
Stephen Frost <sfrost@snowman.net> writes:
> What I think is happening here is that PG is pushing down that filter
> (not typically a bad thing..), but with that condition, it's going to
> scan the index until it finds a match for that filter before returning
> back up only to have that result cut out due to the limit.

Yeah, it's spending quite a lot of time finding the first matching row
in each child table.  I'm curious why that is though; are the child
tables not set up with nonoverlapping firstloadtime ranges?

> What would be great is if PG would realize that the CHECK constraints
> prevent earlier records from being in these earlier tables,

The explain shows that that isn't the case, because it *is* finding at
least one candidate row in each table.  It's just running quite far into
the firstloadtime sequence to do it.

If you're stuck with this table arrangement, one thing that would help
is a two-column index on (host_guid, firstloadtime) on each child table.
That would match the search condition exactly, and so reduce the cost
to find the first matching row to nearly nil.  Whether this query's
speed is important enough to justify maintaining such an index is a
question I can't answer for you.

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: Mark Wong
Дата:
Сообщение: Re: DBT-5 & Postgres 9.0.3
Следующее
От: Stephen Frost
Дата:
Сообщение: Re: Query optimization using order by and limit