twopl.html   [plain text]


<!--$Id: twopl.so,v 10.11 2001/05/22 19:39:32 bostic Exp $-->
<!--Copyright (c) 1997,2008 Oracle.  All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB Reference Guide: Locking with transactions: two-phase locking</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<a name="2"><!--meow--></a>
<table width="100%"><tr valign=top>
<td><b><dl><dt>Berkeley DB Reference Guide:<dd>Locking Subsystem</dl></b></td>
<td align=right><a href="../lock/notxn.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../lock/cam_conv.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p align=center><b>Locking with transactions: two-phase locking</b></p>
<p>Berkeley DB uses a locking protocol called <i>two-phase locking (2PL)</i>.  This
is the traditional protocol used in conjunction with lock-based transaction
systems.</p>
<p>In a two-phase locking system, transactions are divided into two
distinct phases.  During the first phase, the transaction only acquires
locks; during the second phase, the transaction only releases locks.
More formally, once a transaction releases a lock, it may not acquire
any additional locks.  Practically, this translates into a system in
which locks are acquired as they are needed throughout a transaction
and retained until the transaction ends, either by committing or
aborting.  In Berkeley DB, locks are released during <a href="../../api_c/txn_abort.html">DB_TXN-&gt;abort</a> or
<a href="../../api_c/txn_commit.html">DB_TXN-&gt;commit</a>.  The only exception to this protocol occurs when we
use lock-coupling to traverse a data structure.  If the locks are held
only for traversal purposes, it is safe to release locks before
transactions commit or abort.</p>
<p>For applications, the implications of 2PL are that long-running
transactions will hold locks for a long time.  When designing
applications, lock contention should be considered.  In order to reduce
the probability of deadlock and achieve the best level of concurrency
possible, the following guidelines are helpful.</p>
<ol>
<p><li>When accessing multiple databases, design all transactions so that they
access the files in the same order.
<p><li>If possible, access your most hotly contested resources last (so that
their locks are held for the shortest time possible).
<p><li>If possible, use nested transactions to protect the parts of your
transaction most likely to deadlock.
</ol>
<table width="100%"><tr><td><br></td><td align=right><a href="../lock/notxn.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../lock/cam_conv.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
</body>
</html>