forked from facebook/wdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reporting.cpp
511 lines (473 loc) · 19.4 KB
/
Reporting.cpp
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
/**
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include <wdt/Reporting.h>
#include <folly/String.h>
#include <wdt/Protocol.h>
#include <wdt/WdtOptions.h>
#include <algorithm>
#include <iomanip>
#include <iostream>
#include <set>
namespace facebook {
namespace wdt {
const static int64_t kMaxEntriesToPrint = 10;
TransferStats& TransferStats::operator+=(const TransferStats& stats) {
folly::RWSpinLock::WriteHolder writeLock(mutex_.get());
folly::RWSpinLock::ReadHolder readLock(stats.mutex_.get());
headerBytes_ += stats.headerBytes_;
dataBytes_ += stats.dataBytes_;
effectiveHeaderBytes_ += stats.effectiveHeaderBytes_;
effectiveDataBytes_ += stats.effectiveDataBytes_;
numFiles_ += stats.numFiles_;
numBlocks_ += stats.numBlocks_;
failedAttempts_ += stats.failedAttempts_;
if (numBlocksSend_ == -1) {
numBlocksSend_ = stats.numBlocksSend_;
} else if (stats.numBlocksSend_ != -1 &&
numBlocksSend_ != stats.numBlocksSend_) {
WLOG_IF(ERROR, localErrCode_ == OK) << "Mismatch in the numBlocksSend "
<< numBlocksSend_ << " "
<< stats.numBlocksSend_;
localErrCode_ = ERROR;
}
if (totalSenderBytes_ == -1) {
totalSenderBytes_ = stats.totalSenderBytes_;
} else if (stats.totalSenderBytes_ != -1 &&
totalSenderBytes_ != stats.totalSenderBytes_) {
WLOG_IF(ERROR, localErrCode_ == OK) << "Mismatch in the total sender bytes "
<< totalSenderBytes_ << " "
<< stats.totalSenderBytes_;
localErrCode_ = ERROR;
}
localErrCode_ = getMoreInterestingError(localErrCode_, stats.localErrCode_);
WVLOG(2) << "Local ErrorCode now " << localErrCode_ << " from "
<< stats.localErrCode_;
remoteErrCode_ =
getMoreInterestingError(remoteErrCode_, stats.remoteErrCode_);
if (stats.localErrCode_ == OK && stats.remoteErrCode_ == OK) {
// encryption type valid only if error code is OK
// TODO: verify whether all successful threads have same encryption types
encryptionType_ = stats.encryptionType_;
}
return *this;
}
std::ostream& operator<<(std::ostream& os, const TransferStats& stats) {
folly::RWSpinLock::ReadHolder lock(stats.mutex_.get());
double headerOverhead = 100;
double failureOverhead = 100;
if (stats.effectiveDataBytes_ > 0) {
headerOverhead = 100.0 * stats.headerBytes_ / stats.effectiveDataBytes_;
failureOverhead = 100.0 * (stats.dataBytes_ - stats.effectiveDataBytes_) /
stats.effectiveDataBytes_;
}
if (stats.localErrCode_ == OK && stats.remoteErrCode_ == OK) {
os << "Transfer status = OK.";
} else if (stats.localErrCode_ == stats.remoteErrCode_) {
os << "Transfer status = " << errorCodeToStr(stats.localErrCode_) << ".";
} else {
os << "Transfer status (local) = " << errorCodeToStr(stats.localErrCode_)
<< ", (remote) = " << errorCodeToStr(stats.remoteErrCode_) << ".";
}
if (stats.numFiles_ > 0) {
os << " Number of files transferred = " << stats.numFiles_ << ".";
} else {
os << " Number of blocks transferred = " << stats.numBlocks_ << ".";
}
os << " Data Mbytes = " << stats.effectiveDataBytes_ / kMbToB
<< ". Header Kbytes = " << stats.headerBytes_ / 1024. << " ("
<< headerOverhead << "% overhead)"
<< ". Total bytes = " << (stats.dataBytes_ + stats.headerBytes_)
<< ". Wasted bytes due to failure = "
<< (stats.dataBytes_ - stats.effectiveDataBytes_) << " ("
<< failureOverhead << "% overhead)"
<< ". Encryption type = " << encryptionTypeToStr(stats.encryptionType_)
<< ".";
return os;
}
TransferReport::TransferReport(
std::vector<TransferStats>& transferredSourceStats,
std::vector<TransferStats>& failedSourceStats,
std::vector<TransferStats>& threadStats,
std::vector<std::string>& failedDirectories, double totalTime,
int64_t totalFileSize, int64_t numDiscoveredFiles,
int64_t previouslySentBytes, bool fileDiscoveryFinished)
: transferredSourceStats_(std::move(transferredSourceStats)),
failedSourceStats_(std::move(failedSourceStats)),
threadStats_(std::move(threadStats)),
failedDirectories_(std::move(failedDirectories)),
totalTime_(totalTime),
totalFileSize_(totalFileSize),
numDiscoveredFiles_(numDiscoveredFiles),
previouslySentBytes_(previouslySentBytes),
fileDiscoveryFinished_(fileDiscoveryFinished) {
for (const auto& stats : threadStats_) {
summary_ += stats;
}
ErrorCode summaryErrorCode = summary_.getErrorCode();
bool atLeastOneOk = false;
for (auto& stats : threadStats_) {
if (stats.getErrorCode() == OK) {
atLeastOneOk = true;
break;
}
}
WLOG(INFO) << "Error code summary " << errorCodeToStr(summaryErrorCode);
// none of the files or directories failed
bool possiblyOk = true;
if (!failedDirectories_.empty()) {
possiblyOk = false;
summaryErrorCode =
getMoreInterestingError(summaryErrorCode, BYTE_SOURCE_READ_ERROR);
}
for (const auto& sourceStat : failedSourceStats_) {
possiblyOk = false;
summaryErrorCode =
getMoreInterestingError(summaryErrorCode, sourceStat.getErrorCode());
}
// Check that all bytes have been sent.
if (summary_.getEffectiveDataBytes() != totalFileSize_) {
// sender did not send all the bytes
WLOG(INFO) << "Could not send all the bytes " << totalFileSize_ << " "
<< summary_.getEffectiveDataBytes();
if (summaryErrorCode == OK) {
WLOG(ERROR) << "BUG: All threads OK yet sized based error detected";
summaryErrorCode = ERROR;
}
} else {
// See if the error is recoverable.
if (summaryErrorCode != OK && possiblyOk && atLeastOneOk) {
WLOG(WARNING) << "WDT successfully recovered from error "
<< errorCodeToStr(summaryErrorCode);
summaryErrorCode = OK;
}
}
setErrorCode(summaryErrorCode);
std::set<std::string> failedFilesSet;
for (auto& stats : failedSourceStats_) {
failedFilesSet.insert(stats.getId());
}
int64_t numTransferredFiles = numDiscoveredFiles - failedFilesSet.size();
summary_.setNumFiles(numTransferredFiles);
}
TransferReport::TransferReport(TransferStats&& globalStats, double totalTime,
int64_t totalFileSize,
int64_t numDiscoveredFiles,
bool fileDiscoveryFinished)
: summary_(std::move(globalStats)),
totalTime_(totalTime),
totalFileSize_(totalFileSize),
numDiscoveredFiles_(numDiscoveredFiles),
fileDiscoveryFinished_(fileDiscoveryFinished) {
}
TransferReport::TransferReport(const std::vector<TransferStats>& threadStats,
double totalTime, int64_t totalFileSize,
int64_t numDiscoveredFiles,
bool fileDiscoveryFinished)
: totalTime_(totalTime),
totalFileSize_(totalFileSize),
numDiscoveredFiles_(numDiscoveredFiles),
fileDiscoveryFinished_(fileDiscoveryFinished) {
for (const auto& stats : threadStats) {
summary_ += stats;
}
}
TransferReport::TransferReport(TransferStats&& globalStats)
: summary_(std::move(globalStats)) {
const int64_t numBlocksSend = summary_.getNumBlocksSend();
const int64_t numBlocksReceived = summary_.getNumBlocks();
const int64_t numBytesSend = summary_.getTotalSenderBytes();
const int64_t numBytesReceived = summary_.getEffectiveDataBytes();
ErrorCode summaryErrorCode = summary_.getLocalErrorCode();
WVLOG(1) << "Summary Error Code " << summaryErrorCode;
// TODO this is messy and error (ah!) prone
if (numBlocksSend == -1 || numBlocksSend != numBlocksReceived) {
WLOG(ERROR) << "Did not receive all the blocks sent by the sender "
<< numBlocksSend << " " << numBlocksReceived;
summaryErrorCode = getMoreInterestingError(summaryErrorCode, ERROR);
} else if (numBytesSend != -1 && numBytesSend != numBytesReceived) {
// did not receive all the bytes
WLOG(ERROR) << "Number of bytes sent and received do not match "
<< numBytesSend << " " << numBytesReceived;
summaryErrorCode = getMoreInterestingError(summaryErrorCode, ERROR);
} else {
// We got all the bytes... but if we have an encryption error we should
// make it stick (unlike the connection error on a single port...)
if (summaryErrorCode != OK && summaryErrorCode != ENCRYPTION_ERROR) {
WLOG(WARNING) << "All bytes received, turning "
<< errorCodeToStr(summaryErrorCode) << " into local OK";
summaryErrorCode = OK;
}
}
// only the local error code is set here. Any remote error means transfer
// failure. Since, getErrorCode checks both local and remote codes, it will
// return the correct one
summary_.setLocalErrorCode(summaryErrorCode);
}
std::ostream& operator<<(std::ostream& os, const TransferReport& report) {
os << report.getSummary();
os << " Previously sent bytes : " << report.getPreviouslySentBytes() << ".";
if (!report.failedSourceStats_.empty()) {
if (report.summary_.getNumFiles() == 0) {
os << " All files failed.";
} else {
os << "\n" << WDT_LOG_PREFIX << "Failed files :\n" << WDT_LOG_PREFIX;
std::set<std::string> failedFilesSet;
for (auto& stats : report.getFailedSourceStats()) {
failedFilesSet.insert(stats.getId());
}
int64_t numFailedFiles = failedFilesSet.size();
int64_t numOfFilesToPrint =
std::min<int64_t>(kMaxEntriesToPrint, numFailedFiles);
int64_t displayCount = 0;
for (auto& fileName : failedFilesSet) {
if (displayCount >= numOfFilesToPrint) {
break;
}
os << fileName << "\n" << WDT_LOG_PREFIX;
displayCount++;
}
if (numOfFilesToPrint < numFailedFiles) {
os << "more...(" << numFailedFiles - numOfFilesToPrint << " files)";
}
}
}
if (!report.failedDirectories_.empty()) {
os << "\n" << WDT_LOG_PREFIX << "Failed directories :\n" << WDT_LOG_PREFIX;
int64_t numFailedDirectories = report.failedDirectories_.size();
int64_t numOfDirToPrint =
std::min<int64_t>(kMaxEntriesToPrint, numFailedDirectories);
for (int64_t i = 0; i < numOfDirToPrint; i++) {
os << report.failedDirectories_[i] << "\n" << WDT_LOG_PREFIX;
}
if (numOfDirToPrint < numFailedDirectories) {
os << "more...(" << numFailedDirectories - numOfDirToPrint
<< " directories)";
}
}
return os;
}
void ProgressReporter::progress(const std::unique_ptr<TransferReport>& report) {
const TransferStats& stats = report->getSummary();
int64_t totalDiscoveredSize = report->getTotalFileSize();
int progress = 0;
if (totalDiscoveredSize > 0) {
progress = stats.getEffectiveDataBytes() * 100 / totalDiscoveredSize;
}
if (isTty_) {
displayProgress(progress, report->getThroughputMBps(),
report->getCurrentThroughputMBps(),
report->getNumDiscoveredFiles(),
report->fileDiscoveryFinished());
} else {
logProgress(stats.getEffectiveDataBytes(), progress,
report->getThroughputMBps(), report->getCurrentThroughputMBps(),
report->getNumDiscoveredFiles(),
report->fileDiscoveryFinished());
}
}
void ProgressReporter::end(const std::unique_ptr<TransferReport>& report) {
progress(report);
if (isTty_) {
std::cout << '\n';
std::cout.flush();
}
}
void ProgressReporter::displayProgress(int progress, double averageThroughput,
double currentThroughput,
int64_t numDiscoveredFiles,
bool fileDiscoveryFinished) {
std::cout << '\r';
int progressWidth = 50;
if (!fileDiscoveryFinished) {
std::cout << numDiscoveredFiles << "...";
// Progress bar is shorter while file discovery is ongoing
int digits = (numDiscoveredFiles > 0)
? ((int)log10((double)numDiscoveredFiles) + 1)
: 1;
progressWidth -= (3 + digits);
}
int scaledProgress = (progress * progressWidth) / 100;
std::cout << '[';
for (int i = 0; i < scaledProgress - 1; i++) {
std::cout << '=';
}
if (scaledProgress != 0 && scaledProgress != progressWidth) {
std::cout << '>';
}
for (int i = 0; i < progressWidth - scaledProgress - 1; i++) {
std::cout << ' ';
}
std::cout << "] " << std::setw(2) << progress << "% " << std::setprecision(1)
<< std::fixed << averageThroughput;
if (progress < 100) {
std::cout << " " << currentThroughput << " Mbytes/s ";
} else {
std::cout << " Mbytes/s ";
}
std::cout.flush();
}
void ProgressReporter::logProgress(int64_t effectiveDataBytes, int progress,
double averageThroughput,
double currentThroughput,
int64_t numDiscoveredFiles,
bool fileDiscoveryFinished) {
WLOG(INFO) << "wdt transfer progress " << (effectiveDataBytes / kMbToB)
<< " Mbytes, completed " << progress << "%, Average throughput "
<< averageThroughput << " Mbytes/s, Recent throughput "
<< currentThroughput << " Mbytes/s " << numDiscoveredFiles
<< " Files discovered "
<< (fileDiscoveryFinished ? "(complete)" : "(incomplete)");
}
const std::string PerfStatReport::statTypeDescription_[] = {
"Socket Read",
"Socket Write",
"File Open",
"File Close",
"File Read",
"File Write",
"Sync File Range",
"fsync",
"File Seek",
"Throttler Sleep",
"Receiver Wait Sleep",
"Directory creation",
"Ioctl",
"Unlink",
"Fadvise"};
PerfStatReport::PerfStatReport(const WdtOptions& options) {
static_assert(
sizeof(statTypeDescription_) / sizeof(statTypeDescription_[0]) ==
PerfStatReport::END,
"Mismatch between number of stat types and number of descriptions");
networkTimeoutMillis_ =
std::min<int>(options.read_timeout_millis, options.write_timeout_millis);
}
/**
* Semi log bucket definitions covering 5 order of magnitude (more
* could be added) with high resolution in small numbers and relatively
* small number of total buckets
* For efficiency a look up table is created so the last value shouldn't
* be too large (or will incur large memory overhead)
* value between [ bucket(i-1), bucket(i) [ go in slot i
* plus every value > bucket(last) in last bucket
*/
const int32_t PerfStatReport::kHistogramBuckets[] = {
1, 2, 3, 4, 5, 6,
7, 8, 9, 10, 11, // by 1
12, 14, 16, 18, 20, // by 2
25, 30, 35, 40, 45, 50, // by 5
60, 70, 80, 90, 100, // by 10
120, 140, 160, 180, 200, // line2 *10
250, 300, 350, 400, 450, 500, // line3 *10
600, 700, 800, 900, 1000, // line4 *10
2000, 3000, 4000, 5000, 7500, 10000,
20000, 30000, 40000, 50000, 75000, 100000};
void PerfStatReport::addPerfStat(StatType statType, int64_t timeInMicros) {
folly::RWSpinLock::WriteHolder writeLock(mutex_);
int64_t timeInMillis = timeInMicros / kMicroToMilli;
if (timeInMicros >= networkTimeoutMillis_ * 750) {
WLOG(WARNING) << statTypeDescription_[statType] << " system call took "
<< timeInMillis << " ms";
}
perfStats_[statType][timeInMillis]++;
maxValueMicros_[statType] =
std::max<int64_t>(maxValueMicros_[statType], timeInMicros);
minValueMicros_[statType] =
std::min<int64_t>(minValueMicros_[statType], timeInMicros);
count_[statType]++;
sumMicros_[statType] += timeInMicros;
}
PerfStatReport& PerfStatReport::operator+=(const PerfStatReport& statReport) {
folly::RWSpinLock::WriteHolder writeLock(mutex_);
folly::RWSpinLock::ReadHolder readLock(statReport.mutex_);
for (int i = 0; i < kNumTypes_; i++) {
for (const auto& pair : statReport.perfStats_[i]) {
int64_t key = pair.first;
int64_t value = pair.second;
perfStats_[i][key] += value;
}
maxValueMicros_[i] =
std::max<int64_t>(maxValueMicros_[i], statReport.maxValueMicros_[i]);
minValueMicros_[i] =
std::min<int64_t>(minValueMicros_[i], statReport.minValueMicros_[i]);
count_[i] += statReport.count_[i];
sumMicros_[i] += statReport.sumMicros_[i];
}
return *this;
}
std::ostream& operator<<(std::ostream& os, const PerfStatReport& statReport) {
folly::RWSpinLock::ReadHolder readLock(statReport.mutex_);
os << "***** PERF STATS *****\n" << WDT_LOG_PREFIX;
for (int i = 0; i < PerfStatReport::kNumTypes_; i++) {
if (statReport.count_[i] == 0) {
continue;
}
double max = statReport.maxValueMicros_[i] / kMicroToMilli;
double min = statReport.minValueMicros_[i] / kMicroToMilli;
double sum = (statReport.sumMicros_[i] / kMicroToMilli);
double avg = (((double)statReport.sumMicros_[i]) / statReport.count_[i] /
kMicroToMilli);
os << std::fixed << std::setprecision(2);
os << statReport.statTypeDescription_[i] << " : ";
os << "Ncalls " << statReport.count_[i] << " Stats in ms : sum " << sum
<< " Min " << min << " Max " << max << " Avg " << avg << " ";
// One extra bucket for values extending beyond last bucket
int numBuckets = 1 +
sizeof(PerfStatReport::kHistogramBuckets) /
sizeof(PerfStatReport::kHistogramBuckets[0]);
std::vector<int64_t> buckets(numBuckets);
auto& perfStatMap = statReport.perfStats_[i];
std::vector<int64_t> timesInMillis;
for (const auto& pair : perfStatMap) {
timesInMillis.emplace_back(pair.first);
}
std::sort(timesInMillis.begin(), timesInMillis.end());
int currentBucketIndex = 0;
int64_t runningCount = 0;
int64_t p50Count = statReport.count_[i] * 0.50;
int64_t p95Count = statReport.count_[i] * 0.95;
int64_t p99Count = statReport.count_[i] * 0.99;
for (auto time : timesInMillis) {
WDT_CHECK(time >= 0) << time;
int64_t count = perfStatMap.find(time)->second;
if (p50Count > runningCount && p50Count <= runningCount + count) {
os << "p50 " << time << " ";
}
if (p95Count > runningCount && p95Count <= runningCount + count) {
os << "p95 " << time << " ";
}
if (p99Count > runningCount && p99Count <= runningCount + count) {
os << "p99 " << time;
}
runningCount += count;
while (currentBucketIndex < numBuckets - 1 &&
time >= PerfStatReport::kHistogramBuckets[currentBucketIndex]) {
currentBucketIndex++;
}
buckets[currentBucketIndex] += count;
}
os << '\n' << WDT_LOG_PREFIX;
for (int j = 0; j < numBuckets; j++) {
if (buckets[j] == 0) {
continue;
}
int64_t bucketStart =
(j == 0 ? 0 : PerfStatReport::kHistogramBuckets[j - 1]);
int64_t bucketEnd =
(j < numBuckets - 1 ? PerfStatReport::kHistogramBuckets[j]
: std::numeric_limits<int64_t>::max());
os << "[" << bucketStart << ", " << bucketEnd << ") --> " << buckets[j]
<< '\n'
<< WDT_LOG_PREFIX;
}
}
return os;
}
}
}