Re: [GENERAL] ERROR: out of shared memory

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: [GENERAL] ERROR: out of shared memory
Дата
Msg-id b42b73150703270606w6c6605fbt12e863c8c9ef6366@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [GENERAL] ERROR: out of shared memory  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance
On 3/26/07, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> "Sorin N. Ciolofan" <ciolofan@ics.forth.gr> writes:
> >    I have to manage an application written in java which call another module
> > written in java which uses Postgre DBMS in a Linux environment. I'm new to
> > Postgres. The problem is that for large amounts of data the application
> > throws an:
> >  org.postgresql.util.PSQLException: ERROR: out of shared memory
>
> AFAIK the only very likely way to cause that is to touch enough
> different tables in one transaction that you run out of lock entries.
> While you could postpone the problem by increasing the
> max_locks_per_transaction setting, I suspect there may be some basic
> application misdesign involved here.  How many tables have you got?

or advisory locks...these are easy to spot.  query pg_locks and look
for entries of locktype 'advisory'.  I've already seen some apps in
the wild that use them, openads is one.

merlin

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

Предыдущее
От: Ragnar
Дата:
Сообщение: Re: Nested Loop
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [GENERAL] ERROR: out of shared memory