Re: Query only slow on first run

Поиск
Список
Период
Сортировка
От Dave Dutcher
Тема Re: Query only slow on first run
Дата
Msg-id 05ae01c8314f$e0a86990$8e00a8c0@tridecap.com
обсуждение исходный текст
Ответ на Re: Query only slow on first run  (cluster <skrald@amossen.dk>)
Список pgsql-performance
> -----Original Message-----
> From: cluster
>
> If I disable the nested loops, the query becomes *much* slower.
>
> A thing that strikes me is the following. As you can see I have the
> constraint: q.status = 1. Only a small subset of the data set
> has this status. I have an index on q.status but for some
> reason this is not used. Instead the constraint are ensured
> with a "Filter: (q.status = 1)"
> in an index scan for the primary key in the "q" table. If the
> small subset having q.status = 1 could be isolated quickly
> using an index, I would expect the query to perform better. I
> just don't know why the planner doesn't use the index on q.status.
>

What version of Postgres are you using?  Do you know what your
join_collapse_limit is set to?

You might be able to force it to scan for questions with a status of 1 first
to see if it helps by changing the FROM clause to:

FROM posts p, question_tags qt, (SELECT * FROM questions WHERE status = 1
OFFSET 0) q

Dave



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

Предыдущее
От: "Steinar H. Gunderson"
Дата:
Сообщение: Re: Query only slow on first run
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Query only slow on first run