forked from open-telemetry/opentelemetry-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batch_log_processor.cc
311 lines (272 loc) · 9.67 KB
/
batch_log_processor.cc
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
#ifdef ENABLE_LOGS_PREVIEW
# include "opentelemetry/sdk/logs/batch_log_processor.h"
# include "opentelemetry/common/spin_lock_mutex.h"
# include <vector>
using opentelemetry::sdk::common::AtomicUniquePtr;
using opentelemetry::sdk::common::CircularBufferRange;
OPENTELEMETRY_BEGIN_NAMESPACE
namespace sdk
{
namespace logs
{
BatchLogProcessor::BatchLogProcessor(std::unique_ptr<LogExporter> &&exporter,
const size_t max_queue_size,
const std::chrono::milliseconds scheduled_delay_millis,
const size_t max_export_batch_size)
: exporter_(std::move(exporter)),
max_queue_size_(max_queue_size),
scheduled_delay_millis_(scheduled_delay_millis),
max_export_batch_size_(max_export_batch_size),
buffer_(max_queue_size_),
synchronization_data_(std::make_shared<SynchronizationData>()),
worker_thread_(&BatchLogProcessor::DoBackgroundWork, this)
{
synchronization_data_->is_force_wakeup_background_worker.store(false);
synchronization_data_->is_force_flush_pending.store(false);
synchronization_data_->is_force_flush_notified.store(false);
synchronization_data_->is_shutdown.store(false);
}
BatchLogProcessor::BatchLogProcessor(std::unique_ptr<LogExporter> &&exporter,
const BatchLogProcessorOptions &options)
: exporter_(std::move(exporter)),
max_queue_size_(options.max_queue_size),
scheduled_delay_millis_(options.schedule_delay_millis),
max_export_batch_size_(options.max_export_batch_size),
buffer_(options.max_queue_size),
synchronization_data_(std::make_shared<SynchronizationData>()),
worker_thread_(&BatchLogProcessor::DoBackgroundWork, this)
{
synchronization_data_->is_force_wakeup_background_worker.store(false);
synchronization_data_->is_force_flush_pending.store(false);
synchronization_data_->is_force_flush_notified.store(false);
synchronization_data_->is_shutdown.store(false);
}
std::unique_ptr<Recordable> BatchLogProcessor::MakeRecordable() noexcept
{
return exporter_->MakeRecordable();
}
void BatchLogProcessor::OnReceive(std::unique_ptr<Recordable> &&record) noexcept
{
if (synchronization_data_->is_shutdown.load() == true)
{
return;
}
if (buffer_.Add(record) == false)
{
return;
}
// If the queue gets at least half full a preemptive notification is
// sent to the worker thread to start a new export cycle.
size_t buffer_size = buffer_.size();
if (buffer_size >= max_queue_size_ / 2 || buffer_size >= max_export_batch_size_)
{
// signal the worker thread
synchronization_data_->is_force_wakeup_background_worker.store(true, std::memory_order_release);
synchronization_data_->cv.notify_one();
}
}
bool BatchLogProcessor::ForceFlush(std::chrono::microseconds timeout) noexcept
{
if (synchronization_data_->is_shutdown.load() == true)
{
return false;
}
// Now wait for the worker thread to signal back from the Export method
std::unique_lock<std::mutex> lk_cv(synchronization_data_->force_flush_cv_m);
synchronization_data_->is_force_flush_pending.store(true, std::memory_order_release);
auto break_condition = [this]() {
if (synchronization_data_->is_shutdown.load() == true)
{
return true;
}
// Wake up the worker thread once.
if (synchronization_data_->is_force_flush_pending.load(std::memory_order_acquire))
{
synchronization_data_->cv.notify_one();
}
return synchronization_data_->is_force_flush_notified.load(std::memory_order_acquire);
};
// Fix timeout to meet requirement of wait_for
timeout = opentelemetry::common::DurationUtil::AdjustWaitForTimeout(
timeout, std::chrono::microseconds::zero());
bool result;
if (timeout <= std::chrono::microseconds::zero())
{
bool wait_result = false;
while (!wait_result)
{
// When is_force_flush_notified.store(true) and force_flush_cv.notify_all() is called
// between is_force_flush_pending.load() and force_flush_cv.wait(). We must not wait
// for ever
wait_result = synchronization_data_->force_flush_cv.wait_for(lk_cv, scheduled_delay_millis_,
break_condition);
}
result = true;
}
else
{
result = synchronization_data_->force_flush_cv.wait_for(lk_cv, timeout, break_condition);
}
// If it's already signaled, we must wait util notified.
// We use a spin lock here
if (false ==
synchronization_data_->is_force_flush_pending.exchange(false, std::memory_order_acq_rel))
{
for (int retry_waiting_times = 0;
false == synchronization_data_->is_force_flush_notified.load(std::memory_order_acquire);
++retry_waiting_times)
{
opentelemetry::common::SpinLockMutex::fast_yield();
if ((retry_waiting_times & 127) == 127)
{
std::this_thread::yield();
}
}
}
synchronization_data_->is_force_flush_notified.store(false, std::memory_order_release);
return result;
}
void BatchLogProcessor::DoBackgroundWork()
{
auto timeout = scheduled_delay_millis_;
while (true)
{
// Wait for `timeout` milliseconds
std::unique_lock<std::mutex> lk(synchronization_data_->cv_m);
synchronization_data_->cv.wait_for(lk, timeout, [this] {
if (synchronization_data_->is_force_wakeup_background_worker.load(std::memory_order_acquire))
{
return true;
}
return !buffer_.empty();
});
synchronization_data_->is_force_wakeup_background_worker.store(false,
std::memory_order_release);
if (synchronization_data_->is_shutdown.load() == true)
{
DrainQueue();
return;
}
auto start = std::chrono::steady_clock::now();
Export();
auto end = std::chrono::steady_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
// Subtract the duration of this export call from the next `timeout`.
timeout = scheduled_delay_millis_ - duration;
}
}
void BatchLogProcessor::Export()
{
uint64_t current_pending;
uint64_t current_notified;
do
{
std::vector<std::unique_ptr<Recordable>> records_arr;
size_t num_records_to_export;
bool notify_force_flush =
synchronization_data_->is_force_flush_pending.exchange(false, std::memory_order_acq_rel);
if (notify_force_flush)
{
num_records_to_export = buffer_.size();
}
else
{
num_records_to_export =
buffer_.size() >= max_export_batch_size_ ? max_export_batch_size_ : buffer_.size();
}
if (num_records_to_export == 0)
{
NotifyCompletion(notify_force_flush, synchronization_data_);
break;
}
buffer_.Consume(num_records_to_export,
[&](CircularBufferRange<AtomicUniquePtr<Recordable>> range) noexcept {
range.ForEach([&](AtomicUniquePtr<Recordable> &ptr) {
std::unique_ptr<Recordable> swap_ptr = std::unique_ptr<Recordable>(nullptr);
ptr.Swap(swap_ptr);
records_arr.push_back(std::unique_ptr<Recordable>(swap_ptr.release()));
return true;
});
});
exporter_->Export(
nostd::span<std::unique_ptr<Recordable>>(records_arr.data(), records_arr.size()));
NotifyCompletion(notify_force_flush, synchronization_data_);
} while (true);
}
void BatchLogProcessor::NotifyCompletion(
bool notify_force_flush,
const std::shared_ptr<SynchronizationData> &synchronization_data)
{
if (!synchronization_data)
{
return;
}
if (notify_force_flush)
{
synchronization_data->is_force_flush_notified.store(true, std::memory_order_release);
synchronization_data->force_flush_cv.notify_one();
}
}
void BatchLogProcessor::DrainQueue()
{
while (true)
{
if (buffer_.empty() &&
false == synchronization_data_->is_force_flush_pending.load(std::memory_order_acquire))
{
break;
}
Export();
}
}
void BatchLogProcessor::GetWaitAdjustedTime(
std::chrono::microseconds &timeout,
std::chrono::time_point<std::chrono::system_clock> &start_time)
{
auto end_time = std::chrono::system_clock::now();
auto offset = std::chrono::duration_cast<std::chrono::microseconds>(end_time - start_time);
start_time = end_time;
timeout = opentelemetry::common::DurationUtil::AdjustWaitForTimeout(
timeout, std::chrono::microseconds::zero());
if (timeout > offset && timeout > std::chrono::microseconds::zero())
{
timeout -= offset;
}
else
{
// Some module use zero as indefinite timeout.So we can not reset timeout to zero here
timeout = std::chrono::microseconds(1);
}
}
bool BatchLogProcessor::Shutdown(std::chrono::microseconds timeout) noexcept
{
auto start_time = std::chrono::system_clock::now();
std::lock_guard<std::mutex> shutdown_guard{synchronization_data_->shutdown_m};
bool already_shutdown = synchronization_data_->is_shutdown.exchange(true);
if (worker_thread_.joinable())
{
synchronization_data_->is_force_wakeup_background_worker.store(true, std::memory_order_release);
synchronization_data_->cv.notify_one();
worker_thread_.join();
}
GetWaitAdjustedTime(timeout, start_time);
// Should only shutdown exporter ONCE.
if (!already_shutdown && exporter_ != nullptr)
{
return exporter_->Shutdown(timeout);
}
return true;
}
BatchLogProcessor::~BatchLogProcessor()
{
if (synchronization_data_->is_shutdown.load() == false)
{
Shutdown();
}
}
} // namespace logs
} // namespace sdk
OPENTELEMETRY_END_NAMESPACE
#endif