Commit 2f1a7bb7 authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

[t:3063] #3063 Add comments.


git-svn-id: file:///svn/toku/tokudb@29786 c7de825b-a66e-492c-adef-691d508d4ae1
parent c88b6b70
...@@ -64,6 +64,8 @@ fill_xids (OMTVALUE xev, u_int32_t idx, void *varray) { ...@@ -64,6 +64,8 @@ fill_xids (OMTVALUE xev, u_int32_t idx, void *varray) {
return 0; return 0;
} }
// Create list of root transactions that were live when this txn began.
static int static int
setup_live_root_txn_list(TOKUTXN txn) { setup_live_root_txn_list(TOKUTXN txn) {
int r; int r;
...@@ -84,6 +86,9 @@ setup_live_root_txn_list(TOKUTXN txn) { ...@@ -84,6 +86,9 @@ setup_live_root_txn_list(TOKUTXN txn) {
return r; return r;
} }
// Add this txn to the global list of txns that have their own snapshots.
// (Note, if a txn is a child that creates its own snapshot, then that child xid
// is the xid stored in the global list.)
static int static int
snapshot_txnids_note_txn(TOKUTXN txn) { snapshot_txnids_note_txn(TOKUTXN txn) {
int r; int r;
...@@ -95,11 +100,14 @@ snapshot_txnids_note_txn(TOKUTXN txn) { ...@@ -95,11 +100,14 @@ snapshot_txnids_note_txn(TOKUTXN txn) {
return r; return r;
} }
// If live txn is not in reverse live list, then add it.
// If live txn is in reverse live list, update it by setting second xid in pair to new txn that is being started.
static int static int
live_list_reverse_note_txn_start_iter(OMTVALUE live_xidv, u_int32_t UU(index), void*txnv) { live_list_reverse_note_txn_start_iter(OMTVALUE live_xidv, u_int32_t UU(index), void*txnv) {
TOKUTXN txn = txnv; TOKUTXN txn = txnv;
TXNID xid = txn->txnid64; TXNID xid = txn->txnid64; // xid of new txn that is being started
TXNID *live_xid = live_xidv; TXNID *live_xid = live_xidv; // xid on the new txn's live list
OMTVALUE pairv; OMTVALUE pairv;
XID_PAIR pair; XID_PAIR pair;
uint32_t idx; uint32_t idx;
...@@ -125,6 +133,14 @@ live_list_reverse_note_txn_start_iter(OMTVALUE live_xidv, u_int32_t UU(index), v ...@@ -125,6 +133,14 @@ live_list_reverse_note_txn_start_iter(OMTVALUE live_xidv, u_int32_t UU(index), v
return r; return r;
} }
// Maintain the reverse live list. The reverse live list is a list of xid pairs. The first xid in the pair
// is a txn that was live when some txn began, and the second xid in the pair is the newest still-live xid to
// have that first xid in its live list. (The first xid may be closed, it only needed to be live when the
// second txn began.)
// When a new txn begins, we need to scan the live list of this new txn. For each live txn, we either
// add it to the reverse live list (if it is not already there), or update to the reverse live list so
// that this new txn is the second xid in the pair associated with the txn in the live list.
static int static int
live_list_reverse_note_txn_start(TOKUTXN txn) { live_list_reverse_note_txn_start(TOKUTXN txn) {
int r; int r;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment