Typedefs | |
| typedef struct MDBX_txn | MDBX_txn |
| Opaque structure for a transaction handle. | |
Enumerations | |
| enum | MDBX_txn_flags_t { MDBX_TXN_READWRITE = 0 , MDBX_TXN_RDONLY = MDBX_RDONLY , MDBX_TXN_RDONLY_PREPARE = MDBX_RDONLY | MDBX_NOMEMINIT , MDBX_TXN_TRY = UINT32_C(0x10000000) , MDBX_TXN_NOWEAKING = 0 , MDBX_TXN_NOMETASYNC = MDBX_NOMETASYNC , MDBX_TXN_NOSYNC = MDBX_SAFE_NOSYNC , MDBX_TXN_INVALID = INT32_MIN , MDBX_TXN_FINISHED = 0x01 , MDBX_TXN_ERROR = 0x02 , MDBX_TXN_DIRTY = 0x04 , MDBX_TXN_SPILLS = 0x08 , MDBX_TXN_HAS_CHILD = 0x10 , MDBX_TXN_PARKED = 0x20 , MDBX_TXN_AUTOUNPARK = 0x40 , MDBX_TXN_OUSTED = 0x80 , MDBX_TXN_BLOCKED = MDBX_TXN_FINISHED | MDBX_TXN_ERROR | MDBX_TXN_HAS_CHILD | MDBX_TXN_PARKED } |
Functions | |
| LIBMDBX_API int | mdbx_txn_begin_ex (MDBX_env *env, MDBX_txn *parent, MDBX_txn_flags_t flags, MDBX_txn **txn, void *context) |
| Create a transaction with a user provided context pointer for use with the environment. | |
| int | mdbx_txn_begin (MDBX_env *env, MDBX_txn *parent, MDBX_txn_flags_t flags, MDBX_txn **txn) |
| Create a transaction for use with the environment. | |
| LIBMDBX_API int | mdbx_txn_clone (const MDBX_txn *origin, MDBX_txn **in_out_clone, void *context) |
| Starts a read-only clone of a given transaction. | |
| LIBMDBX_API int | mdbx_txn_set_userctx (MDBX_txn *txn, void *ctx) |
| Sets application information associated (a context pointer) with the transaction. | |
| LIBMDBX_API void * | mdbx_txn_get_userctx (const MDBX_txn *txn) |
| Returns an application information (a context pointer) associated with the transaction. | |
| LIBMDBX_API MDBX_env * | mdbx_txn_env (const MDBX_txn *txn) |
| Returns the transaction's MDBX_env. | |
| LIBMDBX_API MDBX_txn_flags_t | mdbx_txn_flags (const MDBX_txn *txn) |
| Return the transaction's flags. | |
| LIBMDBX_API int | mdbx_txn_commit_ex (MDBX_txn *txn, MDBX_commit_latency *latency) |
| Commits all changes of the transaction into a database with collecting latencies information. | |
| LIBMDBX_API int | mdbx_txn_checkpoint (MDBX_txn *txn, MDBX_txn_flags_t weakening_durability, MDBX_commit_latency *latency) |
| Commits all the operations of the transaction and immediately starts next without releasing any locks. | |
| LIBMDBX_API int | mdbx_txn_commit_embark_read (MDBX_txn **ptxn, MDBX_commit_latency *latency) |
| Commits all the operations of the transaction and immediately starts read transaction before release locks. | |
| LIBMDBX_API int | mdbx_txn_amend (MDBX_txn *read_txn, MDBX_txn **ptr_write_txn, MDBX_txn_flags_t flags, void *context) |
| Starts a writing transaction to amending data in the MVCC-snapshot used by the read-only transaction. | |
| int | mdbx_txn_commit (MDBX_txn *txn) |
| Commits all the operations of the transaction into the database. | |
| LIBMDBX_API int | mdbx_txn_abort_ex (MDBX_txn *txn, MDBX_commit_latency *latency) |
| Abandons all the operations of the transaction instead of saving ones with collecting latencies information. | |
| int | mdbx_txn_abort (MDBX_txn *txn) |
| Abandons all the operations of the transaction instead of saving ones. | |
| LIBMDBX_API int | mdbx_txn_break (MDBX_txn *txn) |
| Marks transaction as broken to prevent further operations. | |
| LIBMDBX_API int | mdbx_txn_reset (MDBX_txn *txn) |
| Reset a read-only transaction. | |
| LIBMDBX_API int | mdbx_txn_park (MDBX_txn *txn, bool autounpark) |
| Puts the reading transaction in a "parked" state. | |
| LIBMDBX_API int | mdbx_txn_unpark (MDBX_txn *txn, bool restart_if_ousted) |
| Unparks a previously parked reading transaction. | |
| LIBMDBX_API int | mdbx_txn_renew (MDBX_txn *txn) |
| Renew a read-only transaction. | |
| LIBMDBX_API int | mdbx_txn_refresh (MDBX_txn *txn) |
| Refresh a read-only transaction for a recent data. | |
Opaque structure for a transaction handle.
All table operations require a transaction handle. Transactions may be read-only or read-write.
| enum MDBX_txn_flags_t |
Transaction flags
| Enumerator | |
|---|---|
| MDBX_TXN_READWRITE | Start read-write transaction. Only one write transaction may be active at a time. Writes are fully serialized, which guarantees that writers can never deadlock. |
| MDBX_TXN_RDONLY | Start read-only transaction. There can be multiple read-only transactions simultaneously that do not block each other and a write transactions. |
| MDBX_TXN_RDONLY_PREPARE | Prepare but not start read-only transaction. Transaction will not be started immediately, but created transaction handle will be ready for use with mdbx_txn_renew(). This flag allows to preallocate memory and assign a reader slot, thus avoiding these operations at the next start of the transaction. |
| MDBX_TXN_TRY | Do not block when starting a write transaction. |
| MDBX_TXN_NOWEAKING | Do not weakening durability for a transaction but using mode of the environment. |
| MDBX_TXN_NOMETASYNC | Exactly the same as MDBX_NOMETASYNC, but for this transaction only. |
| MDBX_TXN_NOSYNC | Exactly the same as MDBX_SAFE_NOSYNC, but for this transaction only. |
| MDBX_TXN_INVALID | Transaction is invalid.
|
| MDBX_TXN_FINISHED | Transaction is finished or never began.
|
| MDBX_TXN_ERROR | Transaction is unusable after an error.
|
| MDBX_TXN_DIRTY | Transaction must write, even if dirty list is empty.
|
| MDBX_TXN_SPILLS | Transaction or a parent has spilled pages.
|
| MDBX_TXN_HAS_CHILD | Transaction has a nested child transaction.
|
| MDBX_TXN_PARKED | Transaction is parked by mdbx_txn_park().
|
| MDBX_TXN_AUTOUNPARK | Transaction is parked by mdbx_txn_park() with autounpark=true, and therefore it can be used without explicitly calling mdbx_txn_unpark() first.
|
| MDBX_TXN_OUSTED | The transaction was blocked using the mdbx_txn_park() function, and then ousted by a write transaction because this transaction was interfered with garbage recycling.
|
| MDBX_TXN_BLOCKED | Most operations on the transaction are currently illegal.
|
|
inline |
Abandons all the operations of the transaction instead of saving ones.
The transaction handle is freed. It and its cursors must not be used again after this call, except with mdbx_cursor_renew() and mdbx_cursor_close().
If the current thread is not eligible to manage the transaction then the MDBX_THREAD_MISMATCH error will returned. Otherwise the transaction will be aborted and its handle is freed. Thus, a result other than MDBX_THREAD_MISMATCH means that the transaction is terminated:
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Transaction is already finished or never began. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| LIBMDBX_API int mdbx_txn_abort_ex | ( | MDBX_txn * | txn, |
| MDBX_commit_latency * | latency ) |
Abandons all the operations of the transaction instead of saving ones with collecting latencies information.
| LIBMDBX_API int mdbx_txn_amend | ( | MDBX_txn * | read_txn, |
| MDBX_txn ** | ptr_write_txn, | ||
| MDBX_txn_flags_t | flags, | ||
| void * | context ) |
Starts a writing transaction to amending data in the MVCC-snapshot used by the read-only transaction.
The function tries to start a writing transaction to amend the snapshot of a data associated with a given reading transaction. However, such an operation is not possible if at least one writing transaction has been committed after the start of the specified read-only transaction. In this case, no action is performed and the MDBX_RESULT_TRUE code is returned.
If successful, the handle of the new writing transaction is returned, and the previous reading transaction is finished. With this if MDBX_TXN_RDONLY_PREPARE is present in the flags, the handle of the previous reading transaction will be preserved for subsequent reuse via mdbx_txn_renew(), otherwise it will be released and will become unavailable.
| [in] | read_txn | A read-only transaction handle returned by mdbx_txn_begin(). |
| [in,out] | ptr_write_txn | A pointer for returning the MDBX_txn handle of newly started writing transaction. |
| [in] | flags | Special options for new write transaction. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here:
|
| [in] | context | A pointer to application context to be associated with created transaction and could be retrieved by mdbx_txn_get_userctx() until transaction finished. |
| MDBX_RESULT_TRUE | A more recent MVCC-snapshot has been committed after reading transaction was started and data cannot be amended based on the desired data snapshot, no actions have been performed. |
| MDBX_TXN_OVERLAPPING | The current thread is already executing a write transaction. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Unexpected or wrong transaction state. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
|
inline |
Create a transaction for use with the environment.
The transaction handle may be discarded using mdbx_txn_abort() or mdbx_txn_commit().
| [in] | env | An environment handle returned by mdbx_env_create(). |
| [in] | parent | If this 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. A parent transaction and its cursors may not issue any other operations than mdbx_txn_commit and mdbx_txn_abort() while it has active child transactions. |
| [in] | flags | Special options for this transaction. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here:
|
| [out] | txn | Address where the new MDBX_txn handle will be stored. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_UNABLE_EXTEND_MAPSIZE | Another process wrote data beyond this MDBX_env's mapsize and this environment map must be resized as well. See mdbx_env_set_mapsize(). |
| MDBX_READERS_FULL | A read-only transaction was requested and the reader lock table is full. See mdbx_env_set_maxreaders(). |
| MDBX_ENOMEM | Out of memory. |
| MDBX_BUSY | The write transaction is already started by the current thread. |
| LIBMDBX_API int mdbx_txn_begin_ex | ( | MDBX_env * | env, |
| MDBX_txn * | parent, | ||
| MDBX_txn_flags_t | flags, | ||
| MDBX_txn ** | txn, | ||
| void * | context ) |
Create a transaction with a user provided context pointer for use with the environment.
The transaction handle may be discarded using mdbx_txn_abort() or mdbx_txn_commit().
| [in] | env | An environment handle returned by mdbx_env_create(). |
| [in] | parent | If this 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. A parent transaction and its cursors may not issue any other operations than mdbx_txn_commit and mdbx_txn_abort() while it has active child transactions. |
| [in] | flags | Special options for this transaction. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here:
|
| [out] | txn | Address where the new MDBX_txn handle will be stored. |
| [in] | context | A pointer to application context to be associated with created transaction and could be retrieved by mdbx_txn_get_userctx() until transaction finished. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_UNABLE_EXTEND_MAPSIZE | Another process wrote data beyond this MDBX_env's mapsize and this environment map must be resized as well. See mdbx_env_set_mapsize(). |
| MDBX_READERS_FULL | A read-only transaction was requested and the reader lock table is full. See mdbx_env_set_maxreaders(). |
| MDBX_ENOMEM | Out of memory. |
| MDBX_BUSY | The write transaction is already started by the current thread. |
| LIBMDBX_API int mdbx_txn_break | ( | MDBX_txn * | txn | ) |
Marks transaction as broken to prevent further operations.
Function keeps the transaction handle and corresponding locks, but makes impossible to perform any operations within a broken transaction. Broken transaction must then be aborted explicitly later.
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| LIBMDBX_API int mdbx_txn_checkpoint | ( | MDBX_txn * | txn, |
| MDBX_txn_flags_t | weakening_durability, | ||
| MDBX_commit_latency * | latency ) |
Commits all the operations of the transaction and immediately starts next without releasing any locks.
The function's actions are similar to the sequence of calls mdbx_txn_commit_ex() and then mdbx_txn_begin(MDBX_TXN_READWRITE) if the first one is successful, but without releasing the locks, which ensures that there are no other changes after the current changes are committed and the transaction begins.
| [in,out] | txn | A transaction handle returned by mdbx_txn_begin(). |
| [in] | weakening_durability | Additional flags to weaken durability for committing changes. |
| [out] | latency | An optional pointer for getting information of latencies during the commit stages. |
| MDBX_RESULT_TRUE | The transaction does not contain any changes to commit, no actions have been performed. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Unexpected or wrong transaction state. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL or weakening_durability is invalid. |
| LIBMDBX_API int mdbx_txn_clone | ( | const MDBX_txn * | origin, |
| MDBX_txn ** | in_out_clone, | ||
| void * | context ) |
Starts a read-only clone of a given transaction.
Cloning a read-only transaction generates a transaction reading the same MVCC snapshot of the database. However, cloning a read-write transaction is also explicitly allowed and generates a read transaction that reads the original MVCC-snapshot of the database without uncommitted changes. This feature is a specialized tool for implementing database compactification, data transformation, replication and other specific scenarios.
In the non- MDBX_NOSTICKYTHREADS operation mode, the cloned transaction becomes binded to the current thread. At the same time, it is clearly assumed that the origin transaction is linked to another thread.
When cloning read-only transactions, the parking state of original is preserved and inherited by cloned transaction. Cursors and other objects associated with the original transaction are not affected and are not copied into the cloned transaction.
The function provides for both the creation of a new transaction handle and the reuse of a transaction previously stopped by mdbx_txn_reset().
| [in] | origin | An transaction handle returned by mdbx_txn_begin_ex() or mdbx_txn_begin(). |
| [in,out] | in_out_clone | Address of the MDBX_txn handle that wants to be reused, or where to store the handle of the new transaction. The handle passed by the pointer must be initialized at the input anycase. If the pointed handle at input is NULL, then a new transaction will be created and returned there, otherwise it must be a valid handle of read-only transaction for reuse. |
| [in] | context | A pointer to application context to be associated with started transaction and could be retrieved by mdbx_txn_get_userctx() until transaction finished. Just use NULL if doubt. |
| MDBX_EINVAL | An invalid parameter was specified, i.e. the in_out_clone is NULL. |
| MDBX_BAD_TXN | Origin transaction is already finished or never began, or handle referenced by in_out_clone is invalid or not a read-only transaction. Cloning of a write transactions with pending changes (aka dirtied) is also prohibited to avoid confusion. |
| MDBX_EBADSIGN | Origin transaction object or reference by in_out_clone, has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_OUSTED | Cloned was outed immediately for the sake of recycling old MVCC snapshots. |
| MDBX_MVCC_RETARDED | The MVCC snapshot used by origin transaction was bygone. |
| MDBX_READERS_FULL | A read-only transaction was requested and the reader lock table is full. See mdbx_env_set_maxreaders(). |
| MDBX_ENOMEM | Out of memory during creating new transaction. |
|
inline |
Commits all the operations of the transaction into the database.
If the current thread is not eligible to manage the transaction then the MDBX_THREAD_MISMATCH error will returned. Otherwise the transaction will be committed and its handle is freed. If the transaction cannot be committed, it will be aborted with the corresponding error returned.
Thus, a result other than MDBX_THREAD_MISMATCH means that the transaction is terminated:
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| MDBX_RESULT_TRUE | Transaction was aborted since it should be aborted due to previous errors, either no changes were made during the transaction, and the build time option MDBX_NOSUCCESS_PURE_COMMIT was enabled. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Transaction is already finished or never began. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| MDBX_ENOSPC | No more disk space. |
| MDBX_EIO | An error occurred during the flushing/writing data to a storage medium/disk. |
| MDBX_ENOMEM | Out of memory. |
| LIBMDBX_API int mdbx_txn_commit_embark_read | ( | MDBX_txn ** | ptxn, |
| MDBX_commit_latency * | latency ) |
Commits all the operations of the transaction and immediately starts read transaction before release locks.
The function's actions are similar to the sequence of calls mdbx_txn_commit_ex() and then mdbx_txn_begin(MDBX_TXN_RDONLY) if the first one is successful, but before release the locks, which ensures that there are no other changes after the current changes are committed and the read transaction begins.
| [in,out] | ptxn | A pointer to the transaction handle returned by mdbx_txn_begin(). |
| [out] | latency | An optional pointer for getting information of latencies during the commit stages. |
| MDBX_RESULT_TRUE | The transaction does not contain any changes to commit, no actions have been performed. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Unexpected or wrong transaction state. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| LIBMDBX_API int mdbx_txn_commit_ex | ( | MDBX_txn * | txn, |
| MDBX_commit_latency * | latency ) |
Commits all changes of the transaction into a database with collecting latencies information.
If the current thread is not eligible to manage the transaction then the MDBX_THREAD_MISMATCH error will returned. Otherwise the transaction will be committed and its handle is freed. If the transaction cannot be committed, it will be aborted with the corresponding error returned.
Thus, a result other than MDBX_THREAD_MISMATCH means that the transaction is terminated:
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| [out] | latency | An optional pointer for getting information of latencies during the commit stages. |
| MDBX_RESULT_TRUE | Transaction was aborted since it should be aborted due to previous errors, either no changes were made during the transaction, and the build time option MDBX_NOSUCCESS_PURE_COMMIT was enabled. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Transaction is already finished or never began. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| MDBX_ENOSPC | No more disk space. |
| MDBX_EIO | An error occurred during the flushing/writing data to a storage medium/disk. |
| MDBX_ENOMEM | Out of memory. |
| LIBMDBX_API MDBX_env * mdbx_txn_env | ( | const MDBX_txn * | txn | ) |
Returns the transaction's MDBX_env.
| [in] | txn | A transaction handle returned by mdbx_txn_begin() |
| LIBMDBX_API MDBX_txn_flags_t mdbx_txn_flags | ( | const MDBX_txn * | txn | ) |
Return the transaction's flags.
This returns the flags, including internal, associated with this transaction.
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| LIBMDBX_API void * mdbx_txn_get_userctx | ( | const MDBX_txn * | txn | ) |
Returns an application information (a context pointer) associated with the transaction.
| [in] | txn | An transaction handle returned by mdbx_txn_begin_ex() or mdbx_txn_begin(). |
| LIBMDBX_API int mdbx_txn_park | ( | MDBX_txn * | txn, |
| bool | autounpark ) |
Puts the reading transaction in a "parked" state.
Running read transactions do not allow recycling old MVCC snapshots of data, starting with the oldest used/readable version and all subsequent ones. A parked transaction can be ousted by a write transaction if it interferes with the recycling of garbage (old MVCC snapshots of data). But if no such ousting occurs, then restoring (restoring to a working state and continuing execution) of the reading transaction will be significantly cheaper. Thus, parking transactions allows you to prevent the negative consequences associated with stopping garbage recycling, while keeping overhead costs at a minimum.
To continue execution (reading and/or using data), the parked transaction must be restored using mdbx_txn_unpark(). For ease of use and to prevent unnecessary API calls, using the autounpark parameter, automatic "un-parking" is provided when using a parked transaction in API functions involving data reading.
A parked transaction without "un-parking" can be aborted, reset, or restarted at any time by using mdbx_txn_abort(), mdbx_txn_reset(), and mdbx_txn_renew(), respectively.
| [in] | txn | A read transaction started by mdbx_txn_begin(). |
| [in] | autounpark | Allows you to enable automatic un-parking/restoring of a transaction when calling API functions that involve reading data. |
| LIBMDBX_API int mdbx_txn_refresh | ( | MDBX_txn * | txn | ) |
Refresh a read-only transaction for a recent data.
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| MDBX_RESULT_TRUE | The transaction is already reading the most recent version of the data, no actions have been performed. |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Unexpected or wrong transaction state. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| LIBMDBX_API int mdbx_txn_renew | ( | MDBX_txn * | txn | ) |
Renew a read-only transaction.
This acquires a new reader lock for a transaction handle that had been released by mdbx_txn_reset(). It must be called before a reset transaction may be used again.
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Unexpected or wrong transaction state. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| LIBMDBX_API int mdbx_txn_reset | ( | MDBX_txn * | txn | ) |
Reset a read-only transaction.
Abort the read-only transaction like mdbx_txn_abort(), but keep the transaction handle. Therefore mdbx_txn_renew() may reuse the handle. This saves allocation overhead if the process will start a new read-only transaction soon, and also locking overhead if MDBX_NOSTICKYTHREADS is in use. The reader table lock is released, but the table slot stays tied to its thread or MDBX_txn. Use mdbx_txn_abort() to discard a reset handle, and to free its lock table slot if MDBX_NOSTICKYTHREADS is in use.
Cursors opened within the transaction must not be used again after this call, except with mdbx_cursor_renew() and mdbx_cursor_close().
Reader locks generally don't interfere with writers, but they keep old versions of database pages allocated. Thus they prevent the old pages from being reused when writers commit new data, and so under heavy load the database size may grow much more rapidly than otherwise.
| [in] | txn | A transaction handle returned by mdbx_txn_begin(). |
| MDBX_PANIC | A fatal error occurred earlier and the environment must be shut down. |
| MDBX_BAD_TXN | Transaction is already finished or never began. |
| MDBX_EBADSIGN | Transaction object has invalid signature, e.g. transaction was already terminated or memory was corrupted. |
| MDBX_THREAD_MISMATCH | Given transaction is not owned by current thread. |
| MDBX_EINVAL | Transaction handle is NULL. |
| LIBMDBX_API int mdbx_txn_set_userctx | ( | MDBX_txn * | txn, |
| void * | ctx ) |
Sets application information associated (a context pointer) with the transaction.
| [in] | txn | An transaction handle returned by mdbx_txn_begin_ex() or mdbx_txn_begin(). |
| [in] | ctx | An arbitrary pointer for whatever the application needs. |
| LIBMDBX_API int mdbx_txn_unpark | ( | MDBX_txn * | txn, |
| bool | restart_if_ousted ) |
Unparks a previously parked reading transaction.
The function tries to restore a previously parked transaction. If a parked transaction has been ousted in order to recycle old MVCC snapshots, then depending on the restart_if_ousted argument, it is restarted in the same way as mdbx_txn_renew(), either the transaction is reset and the error code MDBX_OUSTED is returned.
| [in] | txn | A read transaction started by mdbx_txn_begin() and then parked by mdbx_txn_park. |
| [in] | restart_if_ousted | Allows you to immediately restart a transaction if it has been ousted. |
| MDBX_SUCCESS | The parked transaction was successfully restored, or it was not parked. |
| MDBX_OUSTED | The reading transaction was ousted by the writing transaction in order to recycle old MVCC-snapshots, and the restart_if_ousted argument was set to false. The transaction is reset to a similar state after calling mdbx_txn_reset(), but the instance (handle) is not released and can be reused using mdbx_txn_renew(), either released using mdbx_txn_abort(). |
| MDBX_RESULT_TRUE | The reading transaction was ousted but has now been restarted to read recent MVCC-snapshot, since restart_if_ousted was set to ‘true’. |
| MDBX_BAD_TXN | The transaction has already been finished either it has not been started, or it is not a reading transaction. |