Re: PostgreSQL 8.0.6 crash

Поиск
Список
Период
Сортировка
От Mark Woodward
Тема Re: PostgreSQL 8.0.6 crash
Дата
Msg-id 16555.24.91.171.78.1139583432.squirrel@mail.mohawksoft.com
обсуждение исходный текст
Ответ на Re: PostgreSQL 8.0.6 crash  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: PostgreSQL 8.0.6 crash  ("Jim C. Nasby" <jnasby@pervasive.com>)
Список pgsql-hackers
> Rick Gigger <rick@alpinenetworking.com> writes:
>> However if hashagg truly does not obey the limit that is supposed to
>> be imposed by work_mem then it really ought to be documented.  Is
>> there a misunderstanding here and it really does obey it?  Or is
>> hashagg an exception but the other work_mem associated operations
>> work fine?  Or is it possible for them all to go out of bounds?
>
> hashagg is the exception.  It should be fixed, not documented, but no
> one's got round to that.

Well, it is clearly a pathalogical condition. Fixed? Sure, but someone
should document it so that others don't stumble across it.

>
> One point to consider is that if the planner's estimate is as far off
> as exhibited in the OP's example, a hashagg that does spill to disk
> is likely to take so long that he'll be back here complaining that
> the query never terminates ;-).

That's not fair, now is it? This isn't about the OP (me), it is about
PostgreSQL behaving badly.

> In most practical situations, I think
> exceeding work_mem is really the best solution, as long as it's not
> by more than 10x or 100x.  It's when the estimate is off by many
> orders of magnitude that you've got a problem.  Running out of memory
> is not necessarily the worst response ... as long as the system doesn't
> kill the process in response to that.

I don't agree with you here. Many PostgreSQL installations use PostgreSQL
as part of a larger whole. Adjusting "work_mem" should give the admin some
control over the memory footprint of the system. It is documented as the
limit a specific function path will use before spilling to disk.

I set up a lot of systems and I write a lot of software that uses
PostgreSQL. Periodically I run across features/problems/limitations of
PostgreSQL and post them.

This was/is an example of where the behavior of PostgreSQL is clearly
unacceptable. OK, yes, this problem goes away with an ANALYZE, but it
isn't clear how anyone could have known this, and unexpected behavior is
bad in any product.

In your statement, "he'll be back here complaining that the query never
terminates," that's not true. A long query typically gets examined with
explain (or in Oracle, explain plan) and evaluated from there. When the
process exhibits runaway memory use, that's a problem.


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: Compiling UDF DLL under Win32
Следующее
От: ohp@pyrenet.fr
Дата:
Сообщение: how is that possible