Re: Lock on arbitrary string feature

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Lincoln Yeoh <lyeoh(at)pop(dot)jaring(dot)my>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Lock on arbitrary string feature
Date: 2001-01-11 18:26:19
Message-ID: 12063.979237579@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

Lincoln Yeoh <lyeoh(at)pop(dot)jaring(dot)my> writes:
> Has anyone any input to offer on adding an arbitrary locking feature?

> Where
> GETLOCK "string" will lock on "string", the lock being only released at the
> end of a transaction.

> Any comments, suggestions or tips would be welcome. It looks like quite a
> complex thing to do - I've only just started looking at the postgresql
> internals and the lock manager.

A lock is basically an entry in a shared hash table, so you could
implement this just by having a different kind of key (ie, the given
string) for these sorts of locks.

However, the whole thing strikes me as more of an ugly kluge than a
clean solution to the real problem. If you're not using a UNIQUE
constraint then you're relying on application logic to guarantee
consistency, which is bad. If you do have a UNIQUE constraint and
want to layer this sort of application lock on top of it, then you
still have the problem of unexpected failures if some instance/portion
of your application does inserts without remembering to get the
application-level lock. So, as Vadim remarked, doing the insert and
rolling back to a savepoint on failure would be a much better answer.

BTW, you should consider whether you couldn't use the existing USERLOCK
feature as a short-term alternative. If you can squeeze the key value
you need to insert into a user lock tag, that will do as well as your
proposed general-string-tag locks.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jeff Davis 2001-01-11 18:48:36 alter table drop column
Previous Message Myron Scott 2001-01-11 18:14:25 RE: Lock on arbitrary string feature

Browse pgsql-patches by date

  From Date Subject
Next Message Jan Wieck 2001-01-11 19:57:04 Re: Lock on arbitrary string feature
Previous Message Adam Haberlach 2001-01-11 17:38:41 Re: Lock on arbitrary string feature