summaryrefslogtreecommitdiff
path: root/src/mongo/db/op_observer.h
diff options
context:
space:
mode:
authorKyle Suarez <kyle.suarez@mongodb.com>2018-03-29 09:19:10 -0400
committerKyle Suarez <kyle.suarez@mongodb.com>2018-03-29 09:19:10 -0400
commit6f706d7893cc54ebcf52ee4bc98ad3612dc0d99b (patch)
tree2a6e7f06c58b8fcaace78834d4a7eac10e70efab /src/mongo/db/op_observer.h
parent9a9bc7928429b98ff4967a86235c976ee14b1c86 (diff)
downloadmongo-6f706d7893cc54ebcf52ee4bc98ad3612dc0d99b.tar.gz
Revert "SERVER-21693 generate a summary after rollback via recover to timestamp"
This reverts commit fee5ac1166c2b4a0a11e00e58f2d9c12d4567e25. Conflicts: src/mongo/db/op_observer.h
Diffstat (limited to 'src/mongo/db/op_observer.h')
-rw-r--r--src/mongo/db/op_observer.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/op_observer.h b/src/mongo/db/op_observer.h
index f6116324eee..cacff5b68b5 100644
--- a/src/mongo/db/op_observer.h
+++ b/src/mongo/db/op_observer.h
@@ -257,9 +257,6 @@ public:
* any external subsystems that need to be notified of a rollback occurring.
*/
struct RollbackObserverInfo {
- // A count of all oplog entries seen during rollback (even no-op entries).
- std::uint32_t numberOfEntriesObserved;
-
// Set of all namespaces from ops being rolled back.
std::set<NamespaceString> rollbackNamespaces = {};
@@ -278,9 +275,6 @@ public:
// True if the config.version document was rolled back.
bool configServerConfigVersionRolledBack = false;
-
- // Maps command names to a count of the number of those commands that are being rolled back.
- StringMap<std::uint32_t> rollbackCommandCounts;
};
/**