Re: FTS performance issue probably due to wrong planner estimate of detoasting

Поиск
Список
Период
Сортировка
От Stefan Keller
Тема Re: FTS performance issue probably due to wrong planner estimate of detoasting
Дата
Msg-id CAFcOn28oH_-VPYZgRkEc-5+snCW80YXe8MOPE2KMXO9vjUbEDQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: FTS performance issue probably due to wrong planner estimate of detoasting  (Jesper Krogh <jesper@krogh.cc>)
Список pgsql-performance
Hi Jesper and Pavel

Thx for your hints.
I'm rather reluctant in tuning with unwanted side effects, We'll see.
I have to setup my system and db again before I can try out your tricks.

Yours, Stefan

2013/2/8 Jesper Krogh <jesper@krogh.cc>:
> On 08/02/13 01:52, Stefan Keller wrote:
>>
>> Hi,
>>
>> I have problems with the performance of FTS in a query like this:
>>
>>    SELECT * FROM FullTextSearch WHERE content_tsv_gin @@
>> plainto_tsquery('english', 'good');
>>
>> It's slow (> 30 sec.) for some GB (27886 html files, originally 73 MB
>> zipped).
>> The planner obviously always chooses table scan:
>> http://explain.depesz.com/s/EEE
>> I have to check again, if I'm doing something wrong but I'm pretty
>> sure it has to do with de-toasting and (wrong?) cost estimations.
>
> If you havent done it .. bump up statistics target on the column and
> re-analyze, see what that gives.
>
> I have also been playing with the cost-numbers in order to get it to favour
> an index-scan more often. That is lowering random_page_cost to be close to
> seq_page_cost, dependent on your system, the amount of memory, etc, then
> this can have negative side-effects on non-gin-queries.
>
> --
> Jesper


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

Предыдущее
От: Karolis Pocius
Дата:
Сообщение: Slow query even with aggressive auto analyze
Следующее
От: Jon Nelson
Дата:
Сообщение: temp tablespaces and SSDs, etc..