Re: Good name for new lock type for VACUUM?

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Hiroshi Inoue <Inoue(at)tpf(dot)co(dot)jp>, Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Good name for new lock type for VACUUM?
Date: 2001-06-23 22:11:07
Message-ID: 200106232211.f5NMB7r10929@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> "Hiroshi Inoue" <Inoue(at)tpf(dot)co(dot)jp> writes:
> > Isn't it a better idea to have a separate 'SELF EXCLUSIVE' lock
> > which conflicts with only itself ?
> >>
> >> *Only* itself? What would that be useful for?
>
> > Isn't VacuumLock = RowExclusiveLock + SelfExclusiveLock
> > for the table ?
>
> Oh, I see, you're suggesting acquiring two separate locks on the table.
> Hmm. There would be a risk of deadlock if two processes tried to
> acquire these locks in different orders. That's not a big problem for
> VACUUM, since all processes would presumably be executing the same
> VACUUM code. But it raises questions about just how useful this lock
> type would be in general-purpose use. You could never acquire *only*
> this lock type, it'd have to be combined with something else, so it
> seems like any usage would have to be carefully examined for deadlocks.
>
> Still, it's an interesting alternative. Comments anyone?

SelfExclusiveLock is clear and can't be confused with other lock types.

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message mlw 2001-06-23 22:12:46 Working out of the box
Previous Message Tom Lane 2001-06-23 21:29:03 Re: Good name for new lock type for VACUUM?