Re: [Fwd: Re: BUG #2168: 45.000.000 records too much?]

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [Fwd: Re: BUG #2168: 45.000.000 records too much?]
Дата
Msg-id 10547.1137601171@sss.pgh.pa.us
обсуждение исходный текст
Список pgsql-bugs
Steven Mooij <steven@mooij.name> writes:
> LOG:  background writer process (PID 8208) was terminated by signal 9
> LOG:  terminating any other active server processes
> LOG:  statistics collector process (PID 8209) was terminated by signal 9

Kill -9 is not something Postgres ever initiates; where it is probably
coming from is the Linux kernel's emergency out-of-memory handling code.
You really ought to disable OOM kills because they are utterly unsafe :-(
In the above example the kernel has chosen to kill innocent bystander
processes instead of the process that was actually sucking the memory.
See "Linux Memory Overcommit" at
http://www.postgresql.org/docs/8.1/static/kernel-resources.html#AEN18105

As for where the memory is being sucked, it's the list of pending
foreign-key checks during your insert into t_test2.  If you can't
increase the amount of memory available, you'll need to break the
insertion into smaller chunks.  Or perhaps not add the foreign key
constraint till after the table is built.  (Eventually we need to
improve PG so that it can cope with enormous pending-foreign-key lists,
but that's not been done yet.)

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Huge number of disk writes after migration to 8.1
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: Huge number of disk writes after migration to 8.1