Lock questions

Started by Fernandoover 22 years ago2 messagesgeneral
Jump to latest
#1Fernando
proyectolsd@wanadoo.es

Hello,
i've been reading the README file in the lmgr folder (in src/backend/storage/lmgr/) and i have a couple of questions about locks:
- What's the difference between the Lightweight Locks (LWLocks) and the Regular locks (Heavyweight Locks)? For example, if i do a query and it needs a lock, would it be a lightweight one or a regular one?

- There are two lock methods, DEFAULT and USER. Where can I get more information about them? In the README file it says that "USER locks are non-blocking", how could this be?

Thank you very much!

____________________________________________________________
http://webmail.wanadoo.es. Tu correo gratuito, r���pido y en espa���ol

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Fernando (#1)
Re: Lock questions

Fernando <proyectolsd@wanadoo.es> writes:

i've been reading the README file in the lmgr folder (in src/backend/storage/lmgr/) and i have a couple of questions about locks:
- What's the difference between the Lightweight Locks (LWLocks) and
the Regular locks (Heavyweight Locks)?

IIRC the differences are explained in that same README: no deadlock
detection in LWLocks is one of the more critical ones.

For example, if i do a query and it needs a lock, would it be a lightweight one or a regular one?

All user-accessible locks are regular locks. LWLocks are used for
system internal processing (where, hopefully, we can prove that the
access pattern can't deadlock...). As an example, the regular lock
manager uses an LWLock to protect against simultaneous modifications
to its own data structures.

- There are two lock methods, DEFAULT and USER. Where can I get more

information about them? In the README file it says that "USER locks are
non-blocking", how could this be?

See contrib/userlock/

regards, tom lane