summaryrefslogtreecommitdiff
path: root/db/dur_stats.h
blob: 5f5a188bb1d2368e81e22d0444e8d3c418d1a795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// @file dur_stats.h

namespace mongo {
    namespace dur {

        /** journaling stats.  the model here is that the commit thread is the only writer, and that reads are
            uncommon (from a serverStatus command and such).  Thus, there should not be multicore chatter overhead.
        */
        struct Stats {
            Stats();
            void rotate();
            BSONObj asObj();
            unsigned _intervalMicros;
            struct S {
                BSONObj _asObj();
                void reset();

                unsigned _commits;
                unsigned _earlyCommits; // count of early commits from commitIfNeeded() or from getDur().commitNow()
                unsigned long long _journaledBytes;
                unsigned long long _writeToDataFilesBytes;

                unsigned long long _prepLogBufferMicros;
                unsigned long long _writeToJournalMicros;
                unsigned long long _writeToDataFilesMicros;
                unsigned long long _remapPrivateViewMicros;

                // undesirable to be in write lock for the group commit (it can be done in a read lock), so good if we
                // have visibility when this happens.  can happen for a couple reasons
                // - read lock starvation
                // - file being closed
                // - data being written faster than the normal group commit interval
                unsigned _commitsInWriteLock;

                unsigned _dtMillis;
            };
            S *curr;
        private:
            S _a,_b;
            unsigned long long _lastRotate;
            S* other();
        };
        extern Stats stats;

    }
}