Re: Queries within a function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Queries within a function
Дата
Msg-id 29024.1265138879@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Queries within a function  (Mridula Mahadevan <mmahadevan@stratify.com>)
Ответы Re: Queries within a function  (Mridula Mahadevan <mmahadevan@stratify.com>)
Список pgsql-performance
Mridula Mahadevan <mmahadevan@stratify.com> writes:
>  I am running a bunch of queries within a function, creating some temp tables and populating them. When the data
exceedssay, 100k the queries start getting really slow and timeout (30 min). when these are run outside of a
transaction(inauto commit mode), they run in a few seconds. Any ideas on what may be going on and any postgresql.conf
parametersetc that might help? 

I'll bet the function is caching query plans that stop being appropriate
once the table grows in size.  You might have to resort to using
EXECUTE, although if you're on 8.4 DISCARD PLANS ought to help too.

            regards, tom lane

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

Предыдущее
От: Rob
Дата:
Сообщение: System overload / context switching / oom, 8.3
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Re: Faster CREATE DATABASE by delaying fsync (was 8.4.1 ubuntu karmic slow createdb)