Re: Very long SQL strings

Поиск
Список
Период
Сортировка
От Chris Browne
Тема Re: Very long SQL strings
Дата
Msg-id 608xad6q6f.fsf@dba2.int.libertyrms.com
обсуждение исходный текст
Ответ на Very long SQL strings  ("Steven Flatt" <steven.flatt@gmail.com>)
Ответы Re: Very long SQL strings  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance
tgl@sss.pgh.pa.us (Tom Lane) writes:
> PS: for the record, there is a hard limit at 1GB of query text, owing
> to restrictions built into palloc.  But I think you'd hit other
> memory limits or performance bottlenecks before that one.

It would be much funnier to set a hard limit of 640K of query text.
The reasoning should be obvious :-).

I once ran into the situation where Slony-I generated a query that
made the parser blow out (some sort of memory problem / running out of
stack space somewhere thing); it was just short of 640K long, and so
we figured that evidently it was wrong to conclude that "640K ought to
be enough for anybody."

Neil Conway was an observer; he was speculating that, with some
(possibly nontrivial) change to the parser, we should have been able
to cope with it.

The query consisted mostly of a NOT IN clause where the list had some
atrocious number of entries in it (all integers).

(Aside: I wound up writing a "query compressor" (now in 1.2) which
would read that list and, if it was at all large, try to squeeze any
sets of consecutive integers into sets of "NOT BETWEEN" clauses.
Usually, the lists, of XIDs, were more or less consecutive, and
frequently, in the cases where the query got to MBs in size, there
would be sets of hundreds or even thousands of consecutive integers
such that we'd be left with a tiny query after this...)
--
select 'cbbrowne' || '@' || 'linuxfinances.info';
http://linuxfinances.info/info/linux.html
As of next Monday, MACLISP will no longer support list structure.
Please downgrade your programs.

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

Предыдущее
От: Larry Rosenman
Дата:
Сообщение: Re: Database-wide VACUUM ANALYZE
Следующее
От: Bill Moran
Дата:
Сообщение: Re: Database-wide VACUUM ANALYZE