summaryrefslogtreecommitdiff
path: root/src/mongo/logv2/logv2_bm.cpp
blob: 0323d7a01009f2e2226e485202b7a4f852fe309c (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/**
 *    Copyright (C) 2018-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the Server Side Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kDefault
#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kDefault

#include "mongo/logv2/log.h"
#include "mongo/logger/console_appender.h"
#include "mongo/logger/logger.h"
#include "mongo/logger/message_event_utf8_encoder.h"
#include "mongo/logv2/component_settings_filter.h"
#include "mongo/logv2/log_domain_impl.h"
#include "mongo/logv2/text_formatter.h"
#include "mongo/platform/basic.h"
#include "mongo/util/log.h"

#include <benchmark/benchmark.h>
#include <boost/iostreams/device/null.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/log/sinks/sync_frontend.hpp>
#include <boost/log/sinks/text_ostream_backend.hpp>
#include <boost/make_shared.hpp>
#include <iostream>


namespace mongo {
namespace {

boost::shared_ptr<std::ostream> makeNullStream() {
    namespace bios = boost::iostreams;
    return boost::make_shared<bios::stream<bios::null_sink>>(bios::null_sink{});
}

// Class with same interface as Console but uses a boost null_sink internally. So the
// ConsoleAppender can be benchmarked.
class StringstreamConsole {
public:
    stdx::mutex& mutex() {
        static stdx::mutex instance;
        return instance;
    }

    StringstreamConsole() {
        stdx::unique_lock<stdx::mutex> lk(mutex());
        lk.swap(_consoleLock);
        _out = makeNullStream();
    }

    std::ostream& out() {
        return *_out;
    }

private:
    boost::shared_ptr<std::ostream> _out;
    stdx::unique_lock<stdx::mutex> _consoleLock;
};

// RAII style helper class for init/deinit log system
class ScopedLogBench {
public:
    ScopedLogBench(benchmark::State& state) {
        _shouldInit = state.thread_index == 0;
        if (_shouldInit) {
            setupAppender();
        }
    }

    ~ScopedLogBench() {
        if (_shouldInit) {
            tearDownAppender();
        }
    }

private:
    void setupAppender() {
        logger::globalLogManager()->detachDefaultConsoleAppender();
        _appender = logger::globalLogDomain()->attachAppender(
            std::make_unique<
                logger::ConsoleAppender<logger::MessageEventEphemeral, StringstreamConsole>>(
                std::make_unique<logger::MessageEventDetailsEncoder>()));
    }

    void tearDownAppender() {
        logger::globalLogDomain()->detachAppender(_appender);
        logger::globalLogManager()->reattachDefaultConsoleAppender();
    }

    logger::ComponentMessageLogDomain::AppenderHandle _appender;
    bool _shouldInit;
};

// RAII style helper class for init/deinit new log system
class ScopedLogV2Bench {
public:
    ScopedLogV2Bench(benchmark::State& state) {
        _shouldInit = state.thread_index == 0;
        if (_shouldInit) {
            setupAppender();
        }
    }

    ~ScopedLogV2Bench() {
        if (_shouldInit) {
            tearDownAppender();
        }
    }

private:
    void setupAppender() {
        logv2::LogManager::global().detachDefaultBackends();

        auto backend = boost::make_shared<boost::log::sinks::text_ostream_backend>();
        backend->add_stream(makeNullStream());
        backend->auto_flush(true);

        _sink = boost::make_shared<
            boost::log::sinks::synchronous_sink<boost::log::sinks::text_ostream_backend>>(backend);
        _sink->set_filter(logv2::ComponentSettingsFilter(
            logv2::LogManager::global().getGlobalDomain().settings()));
        _sink->set_formatter(logv2::TextFormatter());
        logv2::LogManager::global().getGlobalDomain().impl().core()->add_sink(_sink);
    }

    void tearDownAppender() {
        logv2::LogManager::global().getGlobalDomain().impl().core()->remove_sink(_sink);
        logv2::LogManager::global().reattachDefaultBackends();
    }

    boost::shared_ptr<boost::log::sinks::synchronous_sink<boost::log::sinks::text_ostream_backend>>
        _sink;
    bool _shouldInit;
};

// "Expensive" way to create a string.
std::string createLongString() {
    return std::string(1000, 'a') + std::string(1000, 'b') + std::string(1000, 'c') +
        std::string(1000, 'd') + std::string(1000, 'e');
}

static void BM_NoopLog(benchmark::State& state) {
    ScopedLogBench init(state);

    for (auto _ : state)
        MONGO_LOG(1) << "noop log";
}

static void BM_NoopLogV2Inline(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2_DEBUG_INLINE(1, "noop log");
}

static void BM_NoopLogV2PimplRecord(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2_DEBUG(1, "noop log");
}

static void BM_NoopLogArg(benchmark::State& state) {
    ScopedLogBench init(state);

    for (auto _ : state)
        MONGO_LOG(1) << "noop log " << createLongString();
}

static void BM_NoopLogV2InlineArg(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2_DEBUG_INLINE(1, "noop log {}", "str"_attr = createLongString());
}

static void BM_NoopLogV2PimplRecordArg(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2_DEBUG(1, "noop log {}", "str"_attr = createLongString());
}

static void BM_EnabledLog(benchmark::State& state) {
    ScopedLogBench init(state);

    for (auto _ : state)
        log() << "enabled log";
}


static void BM_EnabledLogV2(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2("enabled log");
}

static void BM_EnabledLogExpensiveArg(benchmark::State& state) {
    ScopedLogBench init(state);

    for (auto _ : state)
        log() << "enabled log " << createLongString();
}


static void BM_EnabledLogV2ExpensiveArg(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state)
        LOGV2("enabled log {}", "str"_attr = createLongString());
}

static void BM_EnabledLogManySmallArg(benchmark::State& state) {
    ScopedLogBench init(state);

    for (auto _ : state)
        log() << "enabled log " << 1 << 2 << "3" << 4.0 << "5"
              << "6"_sd << 7 << 8 << "9"
              << "10"_sd;
}


static void BM_EnabledLogV2ManySmallArg(benchmark::State& state) {
    ScopedLogV2Bench init(state);

    for (auto _ : state) {
        LOGV2("enabled log {}{}{}{}{}{}{}{}{}{}",
              "1"_attr = 1,
              "2"_attr = 2,
              "3"_attr = "3",
              "4"_attr = 4.0,
              "5"_attr = "5",
              "6"_attr = "6"_sd,
              "7"_attr = 7,
              "8"_attr = 8,
              "9"_attr = "9",
              "10"_attr = "10"_sd);
    }
}

BENCHMARK(BM_NoopLog)->Threads(1);
BENCHMARK(BM_NoopLogV2Inline)->Threads(1);
BENCHMARK(BM_NoopLogV2PimplRecord)->Threads(1);

BENCHMARK(BM_NoopLog)->Threads(2);
BENCHMARK(BM_NoopLogV2Inline)->Threads(2);
BENCHMARK(BM_NoopLogV2PimplRecord)->Threads(2);

BENCHMARK(BM_NoopLog)->Threads(4);
BENCHMARK(BM_NoopLogV2Inline)->Threads(4);
BENCHMARK(BM_NoopLogV2PimplRecord)->Threads(4);

BENCHMARK(BM_NoopLog)->Threads(8);
BENCHMARK(BM_NoopLogV2Inline)->Threads(8);
BENCHMARK(BM_NoopLogV2PimplRecord)->Threads(8);

BENCHMARK(BM_NoopLogArg)->Threads(1);
BENCHMARK(BM_NoopLogV2InlineArg)->Threads(1);
BENCHMARK(BM_NoopLogV2PimplRecordArg)->Threads(1);

BENCHMARK(BM_NoopLogArg)->Threads(2);
BENCHMARK(BM_NoopLogV2InlineArg)->Threads(2);
BENCHMARK(BM_NoopLogV2PimplRecordArg)->Threads(2);

BENCHMARK(BM_NoopLogArg)->Threads(4);
BENCHMARK(BM_NoopLogV2InlineArg)->Threads(4);
BENCHMARK(BM_NoopLogV2PimplRecordArg)->Threads(4);

BENCHMARK(BM_NoopLogArg)->Threads(8);
BENCHMARK(BM_NoopLogV2InlineArg)->Threads(8);
BENCHMARK(BM_NoopLogV2PimplRecordArg)->Threads(8);

BENCHMARK(BM_EnabledLog)->Threads(1);
BENCHMARK(BM_EnabledLogV2)->Threads(1);

BENCHMARK(BM_EnabledLog)->Threads(2);
BENCHMARK(BM_EnabledLogV2)->Threads(2);

BENCHMARK(BM_EnabledLog)->Threads(4);
BENCHMARK(BM_EnabledLogV2)->Threads(4);

BENCHMARK(BM_EnabledLog)->Threads(8);
BENCHMARK(BM_EnabledLogV2)->Threads(8);

BENCHMARK(BM_EnabledLogExpensiveArg)->Threads(1);
BENCHMARK(BM_EnabledLogV2ExpensiveArg)->Threads(1);

BENCHMARK(BM_EnabledLogExpensiveArg)->Threads(2);
BENCHMARK(BM_EnabledLogV2ExpensiveArg)->Threads(2);

BENCHMARK(BM_EnabledLogExpensiveArg)->Threads(4);
BENCHMARK(BM_EnabledLogV2ExpensiveArg)->Threads(4);

BENCHMARK(BM_EnabledLogExpensiveArg)->Threads(8);
BENCHMARK(BM_EnabledLogV2ExpensiveArg)->Threads(8);

BENCHMARK(BM_EnabledLogManySmallArg)->Threads(1);
BENCHMARK(BM_EnabledLogV2ManySmallArg)->Threads(1);

BENCHMARK(BM_EnabledLogManySmallArg)->Threads(2);
BENCHMARK(BM_EnabledLogV2ManySmallArg)->Threads(2);

BENCHMARK(BM_EnabledLogManySmallArg)->Threads(4);
BENCHMARK(BM_EnabledLogV2ManySmallArg)->Threads(4);

BENCHMARK(BM_EnabledLogManySmallArg)->Threads(8);
BENCHMARK(BM_EnabledLogV2ManySmallArg)->Threads(8);


}  // namespace
}  // namespace mongo