summaryrefslogtreecommitdiff
path: root/docs/programmer_reference/txn.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/programmer_reference/txn.html')
-rw-r--r--docs/programmer_reference/txn.html168
1 files changed, 100 insertions, 68 deletions
diff --git a/docs/programmer_reference/txn.html b/docs/programmer_reference/txn.html
index 3dd7eed7..35cded33 100644
--- a/docs/programmer_reference/txn.html
+++ b/docs/programmer_reference/txn.html
@@ -14,13 +14,11 @@
<body>
<div xmlns="" class="navheader">
<div class="libver">
- <p>Library Version 11.2.5.3</p>
+ <p>Library Version 12.1.6.1</p>
</div>
<table width="100%" summary="Navigation header">
<tr>
- <th colspan="3" align="center">Chapter 19. 
- The Transaction Subsystem
- </th>
+ <th colspan="3" align="center">Chapter 19.  The Transaction Subsystem </th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="mp_warm.html">Prev</a> </td>
@@ -34,9 +32,7 @@
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a id="txn"></a>Chapter 19. 
- The Transaction Subsystem
- </h2>
+ <h2 class="title"><a id="txn"></a>Chapter 19.  The Transaction Subsystem </h2>
</div>
</div>
</div>
@@ -64,17 +60,17 @@
<dl>
<dt>
<span class="sect2">
- <a href="txn_limits.html#idp3173248">Transaction IDs</a>
+ <a href="txn_limits.html#idp2936928">Transaction IDs</a>
</span>
</dt>
<dt>
<span class="sect2">
- <a href="txn_limits.html#idp3049928">Cursors</a>
+ <a href="txn_limits.html#idp2856976">Cursors</a>
</span>
</dt>
<dt>
<span class="sect2">
- <a href="txn_limits.html#idp3082656">Multiple Threads of Control</a>
+ <a href="txn_limits.html#idp2907576">Multiple Threads of Control</a>
</span>
</dt>
</dl>
@@ -89,64 +85,100 @@
</div>
</div>
</div>
- <p>The Transaction subsystem makes operations atomic, consistent, isolated,
-and durable in the face of system and application failures. The subsystem
-requires that the data be properly logged and locked in order to attain
-these properties. Berkeley DB contains all the components necessary to
-transaction-protect the Berkeley DB access methods, and other forms of data may
-be protected if they are logged and locked appropriately.</p>
- <p>The Transaction subsystem is created, initialized, and opened by calls to
-<a href="../api_reference/C/envopen.html" class="olink">DB_ENV-&gt;open()</a> with the <a href="../api_reference/C/envopen.html#envopen_DB_INIT_TXN" class="olink">DB_INIT_TXN</a> flag specified. Note
-that enabling transactions automatically enables logging, but does not
-enable locking because a single thread of control that needed atomicity
-and recoverability would not require it.</p>
- <p>The <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a> function starts a transaction, returning an opaque
-handle to a transaction. If the parent parameter to <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a> is
-non-NULL, the new transaction is a child of the designated parent
-transaction.</p>
- <p>The <a href="../api_reference/C/txnabort.html" class="olink">DB_TXN-&gt;abort()</a> function ends the designated transaction and causes
-all updates performed by the transaction to be undone. The end result is
-that the database is left in a state identical to the state that existed
-prior to the <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a>. If the aborting transaction has any child
-transactions associated with it (even ones that have already been
-committed), they are also aborted. Any transactions that are unresolved
-(neither committed nor aborted) when the application or system fails
-are aborted during recovery.</p>
- <p>The <a href="../api_reference/C/txncommit.html" class="olink">DB_TXN-&gt;commit()</a> function ends the designated transaction and makes
-all the updates performed by the transaction permanent, even in the face
-of application or system failure. If this is a parent transaction
-committing, all child transactions that individually committed or
-had not been resolved are also committed.</p>
- <p>Transactions are identified by 32-bit unsigned integers. The ID
-associated with any transaction can be obtained using the <a href="../api_reference/C/txnid.html" class="olink">DB_TXN-&gt;id()</a>
-function. If an application is maintaining information outside of Berkeley DB
-it wants to transaction-protect, it should use this transaction ID as
-the locking ID.</p>
- <p>The <a href="../api_reference/C/txncheckpoint.html" class="olink">DB_ENV-&gt;txn_checkpoint()</a> function causes a transaction checkpoint. A
-checkpoint is performed using to a specific log sequence number (LSN),
-referred to as the checkpoint LSN. When a checkpoint completes
-successfully, it means that all data buffers whose updates are described
-by LSNs less than the checkpoint LSN have been written to disk. This, in
-turn, means that the log records less than the checkpoint LSN are no
-longer necessary for normal recovery (although they would be required for
-catastrophic recovery if the database files were lost), and all log files
-containing only records prior to the checkpoint LSN may be safely archived
-and removed.</p>
- <p>The time required to run normal recovery is proportional to the amount
-of work done between checkpoints. If a large number of modifications
-happen between checkpoints, many updates recorded in the log may
-not have been written to disk when failure occurred, and recovery may
-take longer to run. Generally, if the interval between checkpoints is
-short, data may be being written to disk more frequently, but the
-recovery time will be shorter. Often, the checkpoint interval is tuned
-for each specific application.</p>
- <p>The <a href="../api_reference/C/txnstat.html" class="olink">DB_TXN-&gt;stat()</a> method returns information about the status of the
-transaction subsystem. It is the programmatic interface used by the
-<a href="../api_reference/C/db_stat.html" class="olink">db_stat</a> utility.</p>
- <p>The transaction system is closed by a call to <a href="../api_reference/C/envclose.html" class="olink">DB_ENV-&gt;close()</a>.</p>
- <p>Finally, the entire transaction system may be removed using the
-<a href="../api_reference/C/envremove.html" class="olink">DB_ENV-&gt;remove()</a> method.</p>
- <p>For more information on the transaction subsystem methods, see the <a href="../api_reference/C/txn.html#txnlist" class="olink">Transaction Subsystem and Related Methods</a> section in the <em class="citetitle">Berkeley DB C API Reference Guide.</em> </p>
+ <p>
+ The Transaction subsystem makes operations atomic,
+ consistent, isolated, and durable in the face of system and
+ application failures. The subsystem requires that the data be
+ properly logged and locked in order to attain these
+ properties. Berkeley DB contains all the components necessary
+ to transaction-protect the Berkeley DB access methods, and
+ other forms of data may be protected if they are logged and
+ locked appropriately.
+ </p>
+ <p>
+ The Transaction subsystem is created, initialized, and
+ opened by calls to <a href="../api_reference/C/envopen.html" class="olink">DB_ENV-&gt;open()</a> with the <a href="../api_reference/C/envopen.html#envopen_DB_INIT_TXN" class="olink">DB_INIT_TXN</a> flag
+ specified. Note that enabling transactions automatically
+ enables logging, but does not enable locking because a single
+ thread of control that needed atomicity and recoverability
+ would not require it.
+ </p>
+ <p>
+ The <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a> function starts a transaction, returning an
+ opaque handle to a transaction. If the parent parameter to
+ <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a> is non-NULL, the new transaction is a child of the
+ designated parent transaction.
+ </p>
+ <p>
+ The <a href="../api_reference/C/txnabort.html" class="olink">DB_TXN-&gt;abort()</a> function ends the designated transaction and
+ causes all updates performed by the transaction to be undone.
+ The end result is that the database is left in a state
+ identical to the state that existed prior to the <a href="../api_reference/C/txnbegin.html" class="olink">DB_ENV-&gt;txn_begin()</a>.
+ If the aborting transaction has any child transactions
+ associated with it (even ones that have already been
+ committed), they are also aborted. Any transactions that are
+ unresolved (neither committed nor aborted) when the
+ application or system fails are aborted during
+ recovery.
+ </p>
+ <p>
+ The <a href="../api_reference/C/txncommit.html" class="olink">DB_TXN-&gt;commit()</a> function ends the designated transaction and
+ makes all the updates performed by the transaction permanent,
+ even in the face of application or system failure. If this is
+ a parent transaction committing, all child transactions that
+ individually committed or had not been resolved are also
+ committed.
+ </p>
+ <p>
+ Transactions are identified by 32-bit unsigned integers. The
+ ID associated with any transaction can be obtained using the
+ <a href="../api_reference/C/txnid.html" class="olink">DB_TXN-&gt;id()</a> function. If an application is maintaining information
+ outside of Berkeley DB it wants to transaction-protect, it
+ should use this transaction ID as the locking ID.
+ </p>
+ <p>
+ The <a href="../api_reference/C/txncheckpoint.html" class="olink">DB_ENV-&gt;txn_checkpoint()</a> function causes a transaction
+ checkpoint. A checkpoint is performed using to a specific log
+ sequence number (LSN), referred to as the checkpoint LSN. When
+ a checkpoint completes successfully, it means that all data
+ buffers whose updates are described by LSNs less than the
+ checkpoint LSN have been written to disk. This, in turn, means
+ that the log records less than the checkpoint LSN are no
+ longer necessary for normal recovery (although they would be
+ required for catastrophic recovery if the database files were
+ lost), and all log files containing only records prior to the
+ checkpoint LSN may be safely archived and removed.
+ </p>
+ <p>
+ The time required to run normal recovery is proportional to
+ the amount of work done between checkpoints. If a large number
+ of modifications happen between checkpoints, many updates
+ recorded in the log may not have been written to disk when
+ failure occurred, and recovery may take longer to run.
+ Generally, if the interval between checkpoints is short, data
+ may be being written to disk more frequently, but the recovery
+ time will be shorter. Often, the checkpoint interval is tuned
+ for each specific application.
+ </p>
+ <p>
+ The <a href="../api_reference/C/txnstat.html" class="olink">DB_TXN-&gt;stat()</a> method returns information about the status of
+ the transaction subsystem. It is the programmatic interface
+ used by the <a href="../api_reference/C/db_stat.html" class="olink">db_stat</a> utility.
+ </p>
+ <p>
+ The transaction system is closed by a call to
+ <a href="../api_reference/C/envclose.html" class="olink">DB_ENV-&gt;close()</a>.
+ </p>
+ <p>
+ Finally, the entire transaction system may be removed using
+ the <a href="../api_reference/C/envremove.html" class="olink">DB_ENV-&gt;remove()</a> method.
+ </p>
+ <p>
+ For more information on the transaction subsystem methods,
+ see the <a href="../api_reference/C/txn.html#txnlist" class="olink">
+ Transaction Subsystem and Related Methods</a> section
+ in the <em class="citetitle">Berkeley DB C API Reference Guide.</em>
+ </p>
</div>
</div>
<div class="navfooter">