Re: Let's invent a function to report lock-wait-blocking PIDs

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Let's invent a function to report lock-wait-blocking PIDs
Дата
Msg-id 25576.1363819583@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Let's invent a function to report lock-wait-blocking PIDs  (Dimitri Fontaine <dimitri@2ndQuadrant.fr>)
Ответы Re: Let's invent a function to report lock-wait-blocking PIDs  (Dimitri Fontaine <dimitri@2ndQuadrant.fr>)
Список pgsql-hackers
Dimitri Fontaine <dimitri@2ndQuadrant.fr> writes:
> Tom Lane <tgl@sss.pgh.pa.us> writes:
>> If we want a global view of the who-blocks-whom situation, I think we'll
>> need another approach.  But since this way solves isolationtester's
>> problem fairly neatly, I was hopeful that it would be useful for other
>> apps too.

> What about a function

>   pg_is_lock_exclusive(lock, lock) returns boolean
>   pg_is_lock_exclusive(lock[], lock[]) returns boolean

> I suppose that the lock type would be text ('ExclusiveLock'), but we
> could also expose a new ENUM type for that (pg_lock_mode).

I don't have an objection to providing such a function, but it doesn't
do anything for the problem beyond allowing getting rid of the hairy
case expression.  That's a good thing to do of course --- but what about
the indirect-blockage issue?
        regards, tom lane



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

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: Re: Materialized view assertion failure in HEAD
Следующее
От: Dimitri Fontaine
Дата:
Сообщение: Re: Let's invent a function to report lock-wait-blocking PIDs