Re: 9.0 Out of memory

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: 9.0 Out of memory
Дата
Msg-id 4870.1302753958@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: 9.0 Out of memory  (Jeremy Palmer <JPalmer@linz.govt.nz>)
Ответы Re: 9.0 Out of memory  (Jeremy Palmer <JPalmer@linz.govt.nz>)
Список pgsql-general
Jeremy Palmer <JPalmer@linz.govt.nz> writes:
> Ok I removed the geometry column from the cursor query within the function and the session still runs out of memory.
I'mstill seeing the same error message as well: 

>     PortalHeapMemory: 16384 total in 4 blocks; 5944 free (0 chunks); 10440 used
>       ExecutorState: 122880 total in 4 blocks; 63984 free (8 chunks); 58896 used
>         ExprContext: 2496819768 total in 9 blocks; 21080 free (15 chunks); 2496798688 used

> So I guess it's not likely to be the PostGIS geometry to text cast that is leaking the memory.

OK, so that was a wrong guess.

> One thing that has got me interested now is query that executes directly before (see SQL below). If I remove the
geometrycolumn that is generated using ST_Collect aggregate function, the subsequent function involving the cursor
querycompletes and the transaction also runs to completion. 

Hrm.  We were pretty much guessing as to which query was running in that
portal, I think.  It seems entirely plausible that this other query is
the one at fault instead.  It might be premature to blame ST_Collect per
se though --- in particular I'm wondering about the ORDER BY on the
ST_Collect's input.  But if this line of thought is correct, you ought
to be able to exhibit a memory leak using just that sub-part of that
query, without the surrounding function or any other baggage.  Maybe the
leak wouldn't drive the backend to complete failure without that
additional overhead; but a leak of a couple gig ought to be pretty
obvious when watching the process with "top" or similar tool.

            regards, tom lane

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

Предыдущее
От: Jeremy Palmer
Дата:
Сообщение: Re: 9.0 Out of memory
Следующее
От: Benjamin Smith
Дата:
Сообщение: SSDs with Postgresql?