diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-08-11 16:57:51 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-08-11 16:57:51 -0400 |
commit | 8d07d73c833eb898d4d59c685ed25a0c32c22470 (patch) | |
tree | 885b6ed7b8ca49dee5e2672873b399bb31b9fe75 /src/include/btmem.h | |
parent | e1053a70517e5cb703dfc2d7cffebeadaa45d3b3 (diff) | |
download | mongo-8d07d73c833eb898d4d59c685ed25a0c32c22470.tar.gz |
Restore the previous tests for how likely eviction is: the lookaside
file records are only written when eviction gets aggressive, so the
previous tests for how likely eviction is remain relevant, but may
need modification depending on whether or not eviction is aggressive.
Diffstat (limited to 'src/include/btmem.h')
-rw-r--r-- | src/include/btmem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/btmem.h b/src/include/btmem.h index 5f713877373..a813dce48a0 100644 --- a/src/include/btmem.h +++ b/src/include/btmem.h @@ -209,6 +209,9 @@ struct __wt_page_modify { /* Avoid checking for obsolete updates during checkpoints. */ uint64_t obsolete_check_txn; + /* The largest transaction ID seen on the page by reconciliation. */ + uint64_t rec_max_txn; + /* The largest update transaction ID (approximate). */ uint64_t update_txn; |