DB_ENV->txn_begin()
#include <db.h>
int
DB_ENV->txn_begin(DB_ENV *env,
DB_TXN *parent, DB_TXN **tid, u_int32_t flags); The DB_ENV->txn_begin() method creates a new transaction in the environment and copies a pointer to a DB_TXN that uniquely identifies it into the memory to which tid refers. Calling the DB_TXN->abort(), DB_TXN->commit() or DB_TXN->discard() methods will discard the returned handle.
Note
Transactions may only span threads if they do so serially; that is, each transaction must be active in only a single thread of control at a time. This restriction holds for parents of nested transactions as well; no two children may be concurrently active in more than one thread of control at any one time.
Note
Cursors may not span transactions; that is, each cursor must be opened and closed within a single transaction.
Note
A parent transaction may not issue any Berkeley DB operations — except for DB_ENV->txn_begin(), DB_TXN->abort() and DB_TXN->commit() — while it has active child transactions (child transactions that have not yet been committed or aborted).
The DB_ENV->txn_begin() method returns a non-zero error value on failure and 0 on success.
Parameters
parent
If the parent parameter is non-NULL, the new transaction will be a nested transaction, with the transaction indicated by parent as its parent. Transactions may be nested to any level. In the presence of distributed transactions and two-phase commit, only the parental transaction, that is a transaction without a parent specified, should be passed as an parameter to DB_TXN->prepare().
flags
The flags parameter must be set to 0 or by bitwise inclusively OR'ing together one or more of the following values:
DB_READ_COMMITTEDThis transaction will have degree 2 isolation. This provides for cursor stability but not repeatable reads. Data items which have been previously read by this transaction may be deleted or modified by other transactions before this transaction completes.
DB_READ_UNCOMMITTEDThis transaction will have degree 1 isolation. Read operations performed by the transaction may read modified but not yet committed data. Silently ignored if the
DB_READ_UNCOMMITTEDflag was not specified when the underlying database was opened.DB_TXN_BULKEnable transactional bulk insert optimization. When this flag is set, the transaction avoids logging the contents of insertions on newly allocated database pages. In a transaction that inserts a large number of new records, the I/O savings of choosing this option can be significant.
Users of this option should be aware of several issues. When the optimization is in effect, page allocations that extend the database file are logged as usual; this allows transaction aborts to work correctly, both online and during recovery. At commit time, the database's pages are flushed to disk, eliminating the need to roll-forward the transaction during normal recovery. However, there are other recovery operations that depend on roll-forward, and care must be taken when
DB_TXN_BULKtransactions interact with them.In particular,
DB_TXN_BULKis incompatible with replication, and is simply ignored when replication is enabled. Also, hot backup procedures must follow a particular protocol, introduced in Berkeley DB 11gR2.5.1, which is to set theDB_HOTBACKUP_IN_PROGRESSflag in the environment before starting to copy files. It is important to note that incremental hot backups can be invalidated by use of the bulk insert optimization. For more information, see the section on Hot Backup in the Getting Started With Transaction Processing Guide and the description of the flagDB_HOTBACKUP_IN_PROGRESSinDB_ENV->set_flags.The bulk insert optimization is effective only for top-level transactions. The
DB_TXN_BULKflag is ignored when parent is non-null.DB_TXN_FAMILYStart this transaction as part of a transaction family: a group of transactions that share locks and never conflict with one another. A family transaction is read-only from the caller's perspective and does not itself perform updates; it is used to hand a common locking context to a set of cooperating transactions (for example, a client/server design that spreads one logical unit of work across several transaction handles). When this flag is set the transaction is created read-only and shares the locker of its family, so operations performed under different members of the same family do not deadlock against each other.
DB_TXN_NOSYNCDo not synchronously flush the log when this transaction commits or prepares. This means the transaction will exhibit the ACI (atomicity, consistency, and isolation) properties, but not D (durability); that is, database integrity will be maintained but it is possible that this transaction may be undone during recovery.
This behavior may be set for a Berkeley DB environment using the DB_ENV->set_flags() method. Any value specified to this method overrides that setting.
DB_TXN_NOWAITIf a lock is unavailable for any Berkeley DB operation performed in the context of this transaction, cause the operation to return DB_LOCK_DEADLOCK (or DB_LOCK_NOTGRANTED if the database environment has been configured using the DB_TIME_NOTGRANTED flag).
This behavior may be set for a Berkeley DB environment using the DB_ENV->set_flags() method. Any value specified to this method overrides that setting.
DB_TXN_SNAPSHOTThis transaction will execute with serializable snapshot isolation (SSI): snapshot isolation plus serializable conflict detection (the Cahill SSI algorithm). For databases with the DB_MULTIVERSION flag set, data values are read as they are when the transaction begins, without taking read locks; for databases without DB_MULTIVERSION, read locks are acquired. On top of that consistent snapshot, Berkeley DB tracks read/write anti-dependencies between concurrent snapshot transactions and, when it detects a dependency structure that could produce a non-serializable schedule, aborts one of the transactions so the committed history is equivalent to some serial order.
A transaction that hits such a potential anomaly is aborted with one of two Berkeley DB-specific error returns instead of committing: DB_SNAPSHOT_UNSAFE (a potential serializable-snapshot anomaly was detected via a read/write anti-dependency) or DB_SNAPSHOT_CONFLICT (a conflicting snapshot update was detected). On either return the application must abort the transaction and may retry it. The error
DB_LOCK_DEADLOCKmay also be returned from update operations if a snapshot transaction attempts to update data modified after it read the snapshot.A
DB_TXN_SNAPSHOT(SSI) transaction cannot be prepared for two-phase commit: DB_TXN->prepare() returnsEINVALfor such a transaction, because SSI's conflict status is not frozen at prepare time and a later-detected anomaly could not be honored after the transaction had entered the prepared state.Note: In this fork,
DB_TXN_SNAPSHOTprovides serializable snapshot isolation. In stock Oracle Berkeley DB,DB_TXN_SNAPSHOTprovided only plain (non-serializable) snapshot isolation, and the earlierDB_TXN_SNAPSHOT_SAFEflag has been removed — there is no separate non-serializable snapshot mode.Fixed after 5.3.34. Release 5.3.34 had two defects affecting this flag, both now fixed: a write skew could commit when the second transaction's write landed while the first was inside DB_TXN->commit() (issue #136), and long-lived environments running many snapshot transactions could exhaust the mutex region with
ENOMEMbecause reader bookkeeping was not fully reclaimed (issues #137, #138). Each fix is covered by a regression test that runs in continuous integration. If you are using 5.3.34, upgrade.DB_TXN_SYNCSynchronously flush the log when this transaction commits or prepares. This means the transaction will exhibit all of the ACID (atomicity, consistency, isolation, and durability) properties.
This behavior is the default for Berkeley DB environments unless the
DB_TXN_NOSYNCflag was specified to the DB_ENV->set_flags() method. Any value specified to this method overrides that setting.DB_TXN_WAITIf a lock is unavailable for any Berkeley DB operation performed in the context of this transaction, wait for the lock.
This behavior is the default for Berkeley DB environments unless the
DB_TXN_NOWAITflag was specified to the DB_ENV->set_flags() method. Any value specified to this method overrides that setting.DB_TXN_WRITE_NOSYNCWrite, but do not synchronously flush, the log when this transaction commits. This means the transaction will exhibit the ACI (atomicity, consistency, and isolation) properties, but not D (durability); that is, database integrity will be maintained, but if the system fails, it is possible some number of the most recently committed transactions may be undone during recovery. The number of transactions at risk is governed by how often the system flushes dirty buffers to disk and how often the log is flushed or checkpointed.
This behavior may be set for a Berkeley DB environment using the DB_ENV->set_flags() method. Any value specified to this method overrides that setting.
Errors
The DB_ENV->txn_begin() method may fail and return one of the following non-zero errors:
ENOMEM
The maximum number of concurrent transactions has been reached.