Re: [PERFORM] psql -A (unaligned format) eats too much memory

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [PERFORM] psql -A (unaligned format) eats too much memory
Дата
Msg-id 20813.1149523235@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [PERFORM] psql -A (unaligned format) eats too much memory  ("Jim C. Nasby" <jnasby@pervasive.com>)
Ответы Re: [PERFORM] psql -A (unaligned format) eats too much  ("Mark Woodward" <pgsql@mohawksoft.com>)
Список pgsql-hackers
"Jim C. Nasby" <jnasby@pervasive.com> writes:
> On Mon, Jun 05, 2006 at 11:27:30AM -0400, Tom Lane wrote:
>> I'm reading this as just another uninformed complaint about libpq's
>> habit of buffering the whole query result.  It's possible that there's
>> a memory leak in the -A path specifically, but nothing said so far
>> provided any evidence for that.

> Certainly seems like it. It seems like it would be good to allow for
> libpq not to buffer, since there's cases where it's not needed...

See past discussions.  The problem is that libpq's API says that when it
hands you back the completed query result, the command is complete and
guaranteed not to fail later.  A streaming interface could not make that
guarantee, so it's not a transparent substitution.

I wouldn't have any strong objection to providing a separate API that
operates in a streaming fashion, but defining it is something no one's
bothered to do yet.  In practice, if you have to code to a variant API,
it's not that much more trouble to use a cursor...
        regards, tom lane


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

Предыдущее
От: Teodor Sigaev
Дата:
Сообщение: Re: Connection Broken with Custom Dicts for TSearch2
Следующее
От: "Mark Woodward"
Дата:
Сообщение: Re: [PERFORM] psql -A (unaligned format) eats too much