mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 17:16:25 +00:00
93 lines
3.6 KiB
HTML
93 lines
3.6 KiB
HTML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<title>No Wait on Blocks</title>
|
||
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
|
||
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
|
||
<link rel="start" href="index.html" title="Getting Started with Berkeley DB Transaction Processing" />
|
||
<link rel="up" href="txnconcurrency.html" title="Chapter 4. Concurrency" />
|
||
<link rel="prev" href="readmodifywrite.html" title="Read/Modify/Write" />
|
||
<link rel="next" href="reversesplit.html" title="Reverse BTree Splits" />
|
||
</head>
|
||
<body>
|
||
<div xmlns="" class="navheader">
|
||
<div class="libver">
|
||
<p>Library Version 11.2.5.2</p>
|
||
</div>
|
||
<table width="100%" summary="Navigation header">
|
||
<tr>
|
||
<th colspan="3" align="center">No Wait on Blocks</th>
|
||
</tr>
|
||
<tr>
|
||
<td width="20%" align="left"><a accesskey="p" href="readmodifywrite.html">Prev</a> </td>
|
||
<th width="60%" align="center">Chapter 4. Concurrency</th>
|
||
<td width="20%" align="right"> <a accesskey="n" href="reversesplit.html">Next</a></td>
|
||
</tr>
|
||
</table>
|
||
<hr />
|
||
</div>
|
||
<div class="sect1" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h2 class="title" style="clear: both"><a id="txnnowait"></a>No Wait on Blocks</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
Normally when a DB transaction is blocked on a lock request, it
|
||
must wait until the requested lock becomes available before its
|
||
thread-of-control can proceed. However, it is possible to configure a
|
||
transaction handle such that it will report a deadlock rather
|
||
than wait for the block to clear.
|
||
</p>
|
||
<p>
|
||
You do this on a transaction by transaction basis by specifying
|
||
|
||
<span>
|
||
<code class="literal">DB_TXN_NOWAIT</code>
|
||
to the
|
||
<code class="methodname">DB_ENV->txn_begin()</code>
|
||
|
||
|
||
method.
|
||
</span>
|
||
|
||
|
||
</p>
|
||
<p>
|
||
For example:
|
||
</p>
|
||
<pre class="programlisting"> /* Get the transaction */
|
||
DB_TXN *txn = NULL;
|
||
ret = envp->txn_begin(envp, NULL, &txn, DB_TXN_NOWAIT);
|
||
if (ret != 0) {
|
||
envp->err(envp, ret, "txn_begin failed");
|
||
return (EXIT_FAILURE);
|
||
}
|
||
....
|
||
/* Deadlock detection and exception handling omitted for brevity. */</pre>
|
||
</div>
|
||
<div class="navfooter">
|
||
<hr />
|
||
<table width="100%" summary="Navigation footer">
|
||
<tr>
|
||
<td width="40%" align="left"><a accesskey="p" href="readmodifywrite.html">Prev</a> </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="u" href="txnconcurrency.html">Up</a>
|
||
</td>
|
||
<td width="40%" align="right"> <a accesskey="n" href="reversesplit.html">Next</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td width="40%" align="left" valign="top">Read/Modify/Write </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="h" href="index.html">Home</a>
|
||
</td>
|
||
<td width="40%" align="right" valign="top"> Reverse BTree Splits</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</body>
|
||
</html>
|