Re: Function performance drops during execution of loop

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Function performance drops during execution of loop
Дата
Msg-id 2040.1400687520@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Function performance drops during execution of loop  (Seref Arikan <serefarikan@kurumsalteknoloji.com>)
Ответы Re: Function performance drops during execution of loop
Re: Function performance drops during execution of loop
Список pgsql-general
Seref Arikan <serefarikan@kurumsalteknoloji.com> writes:
> What may be building up here? I suspect deleting all rows from the temp
> tables is not really deleting them since this is all happening in a
> transaction, but it is my uneducated guess only.

I suspect you suspect correctly.  Autovacuum does not touch temp tables,
so it won't help you deal with deleted tuples.  Given the usage pattern
you're describing, I think that using a TRUNCATE rather than
delete-all-the-rows would help ... but if you're already doing that,
we need more info.

            regards, tom lane


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

Предыдущее
От: Seref Arikan
Дата:
Сообщение: Function performance drops during execution of loop
Следующее
От: Seref Arikan
Дата:
Сообщение: Re: Function performance drops during execution of loop