diff options
author | Samy Lanka <samy.lanka@mongodb.com> | 2019-01-24 21:57:25 -0500 |
---|---|---|
committer | Samy Lanka <samy.lanka@mongodb.com> | 2019-02-11 12:27:33 -0500 |
commit | 4f858c52b05ecc49d2ae19bbaf59fc0aad445b7e (patch) | |
tree | 2af6afbcb4d27b4b1ce22eb25750583666396a8a /src/mongo/db/transactions_stats.idl | |
parent | d568e329a67eee8ba241d52067750a3d8c42dc0f (diff) | |
download | mongo-4f858c52b05ecc49d2ae19bbaf59fc0aad445b7e.tar.gz |
SERVER-36489 Start initial sync oplog fetching from the 'oldest active transaction timestamp'
SERVER-36490 Initial sync should not actually prepare transactions on applying prepareTransaction oplog entries
SERVER-36491 During initial sync, make commitTransaction oplog entries apply the transaction from the prepare oplog entry
Diffstat (limited to 'src/mongo/db/transactions_stats.idl')
-rw-r--r-- | src/mongo/db/transactions_stats.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/transactions_stats.idl b/src/mongo/db/transactions_stats.idl index 834399a331c..070ca433080 100644 --- a/src/mongo/db/transactions_stats.idl +++ b/src/mongo/db/transactions_stats.idl @@ -35,6 +35,7 @@ global: imports: - "mongo/idl/basic_types.idl" + - "mongo/db/repl/replication_types.idl" structs: @@ -82,7 +83,7 @@ structs: currentPrepared: type: long default: 0 - oldestActiveOplogEntryTimestamp: - type: timestamp + oldestActiveOplogEntryOpTime: + type: optime oldestOpenUnpreparedReadTimestamp: type: timestamp |