Distributed lock manager: Difference between revisions

Content deleted Content added
BG19bot (talk | contribs)
m Lock modes: Remove blank line(s) between list items per WP:LISTGAP to fix an accessibility issue for users of screen readers. Do WP:GENFIXES and cleanup if needed. Discuss this at Wikipedia talk:WikiProject Accessibility#LISTGAP
trim down the proper nouns
Line 1:
{{refimprove|datte=October 2010|date=October 2010}}
Operating Systems use Locklock Managersmanagers to organise and serialise the access to resources. A Distributed'''distributed Locklock Managermanager''' (DLM) runs in every machine in a cluster, with an identical copy of a cluster-wide Locklock Databasedatabase. In this way a DLM provides [[software application]]s which are [[distributed programming|distributed]] across a cluster on multiple machines with a means to synchronize their accesses to [[shared resource]]s.
a '''distributed lock manager''' ('''DLM''') provides [[software application]]s which are [[distributed programming|distributed]] across a cluster on multiple machines with a means to synchronize their accesses to [[shared resource]]s.
 
DLMs have been used as the foundation for several successful [[clustered file system]]s, in which the machines in a [[computer cluster|cluster]] can use each other's storage via a unified [[file system]], with significant advantages for performance and [[high-availability|availability]]. The main performance benefit comes from solving the problem of [[cache coherency|disk cache coherency]] between participating computers. The DLM is used not only for [[file locking]] but also for coordination of all [[disk (storage device)|disk]] access. [[VMScluster]], the first clustering system to come into widespread use, relies on the [[OpenVMS]] DLM in just this way.