Re: FW: FW: Index usage

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: FW: FW: Index usage
Дата
Msg-id 41A46A2E.8030606@archonet.com
обсуждение исходный текст
Ответ на Re: FW: FW: Index usage  ("BBI Edwin Punzalan" <edwin@bluebamboo.ph>)
Список pgsql-performance
BBI Edwin Punzalan wrote:
> Hi.
>
> 1) chatlogs rows increases every now and then (its in a live environment)
> and currently have 538,696 rows

OK, so as a rule of thumb I'd say if you were fetching less than 5000
rows it's bound to use an index. If more than 50,000 always use a
seqscan, otherwise it'll depend on configuration settings. It looks like
you settings are suggesting the cost of an index-scan vs seq-scan are
greater than they are.

> 2) this is the only problem we experienced.  So far, all our other indexes
> are being used correctly.

Good.

> 3) I don't remember tuning any post-installation configuration of our
> postgreSQL except setting fsync to false.

So long as you know why this can cause data loss. It won't affect this
problem.

Read that performance article I linked to in the last message, it's
written by two people who know what they're talking about. The standard
configuration settings are designed to work on any machine, not provide
good performance. Work through the basics there and we can look at
random_page_cost etc. if it's still causing you problems.

--
   Richard Huxton
   Archonet Ltd

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

Предыдущее
От: "BBI Edwin Punzalan"
Дата:
Сообщение: Re: FW: FW: Index usage
Следующее
От: Evilio del Rio
Дата:
Сообщение: Postgres vs. MySQL