Front end memory consumption in SELECT

Поиск
Список
Период
Сортировка
От Douglas Thomson
Тема Front end memory consumption in SELECT
Дата
Msg-id 199911200110.MAA09758@mugca.cc.monash.edu.au
обсуждение исходный текст
Ответы Re: [INTERFACES] Front end memory consumption in SELECT  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-interfaces
I have a large table that I need to traverse in full. I currently
start with a simple unrestricted SELECT, and then fetch each and
every row one at a time. I thought that by fetching just one row at a
time I would not consume any significant amount of memory.

However, judging by the memory consumption of my front-end process,
it would seem that the SELECT is loading the entire table into memory
before I even fetch the first row! Can anyone confirm that this is in
fact what goes on?

If so, is there any way to avoid it? The obvious solution would seem
to be to use LIMIT and OFFSET to get just a few thousand rows at a
time, but will that suffer from a time overhead while the backend
skips over millions of rows to get to the ones it needs??

Thanks for any clues anyone can provide!

Doug.

P.S. If it matters, I am using the Perl interface. I am also running in
     SERIALIZABLE mode...

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

Предыдущее
От: Mads Pultz
Дата:
Сообщение: JDBC compliancy question
Следующее
От: "Sergio A. Kessler"
Дата:
Сообщение: Re: [INTERFACES] pg_pwd