Re: Maximum number of exclusive locks

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Maximum number of exclusive locks
Дата
Msg-id 26828.1473772864@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Maximum number of exclusive locks  ("Daniel Verite" <daniel@manitou-mail.org>)
Ответы Re: Maximum number of exclusive locks  (Jeff Janes <jeff.janes@gmail.com>)
Список pgsql-general
"Daniel Verite" <daniel@manitou-mail.org> writes:
> Nothing to complain about, but why would the above formula
> underestimate the number of object locks actually available
> to a transaction? Isn't it supposed to be a hard cap for such
> locks?

No, it's a minimum not a maximum.  There's (intentionally) a fair amount
of slop in the initial shmem size request.  Once everything that's going
to be allocated has been allocated during postmaster startup, the rest is
available for growth of shared hash tables, which in practice means the
lock table; there aren't any other shared structures that grow at runtime.
So there's room for the lock table to grow a bit beyond its nominal
capacity.

Having said that, the amount of slop involved is only enough for a
few hundred lock entries.  Not sure how you're managing to get to
nearly 20000 extra entries.

            regards, tom lane


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

Предыдущее
От: "Daniel Verite"
Дата:
Сообщение: Maximum number of exclusive locks
Следующее
От: "Hu, Patricia"
Дата:
Сообщение: Re: Predicting query runtime