forked from opencurve/curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chunkserver_metrics.h
556 lines (481 loc) · 15.8 KB
/
chunkserver_metrics.h
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
/*
* Copyright (c) 2020 NetEase Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Project: curve
* Created Date: Monday June 10th 2019
* Author: yangyaokai
*/
#ifndef SRC_CHUNKSERVER_CHUNKSERVER_METRICS_H_
#define SRC_CHUNKSERVER_CHUNKSERVER_METRICS_H_
#include <bvar/bvar.h>
#include <butil/time.h>
#include <string>
#include <unordered_map>
#include <memory>
#include <vector>
#include "include/chunkserver/chunkserver_common.h"
#include "src/common/uncopyable.h"
#include "src/common/concurrent/rw_lock.h"
#include "src/common/configuration.h"
#include "src/chunkserver/datastore/file_pool.h"
using curve::common::Configuration;
using curve::common::ReadLockGuard;
using curve::common::RWLock;
using curve::common::Uncopyable;
using curve::common::WriteLockGuard;
namespace curve {
namespace chunkserver {
class CopysetNodeManager;
class FilePool;
class CSDataStore;
class CurveSegmentLogStorage;
class Trash;
template <typename Tp>
using PassiveStatusPtr = std::shared_ptr<bvar::PassiveStatus<Tp>>;
template <typename Tp> using AdderPtr = std::shared_ptr<bvar::Adder<Tp>>;
// 使用LatencyRecorder的实现来统计读写请求的size情况
// 可以统计分位值、最大值、中位数、平均值等情况
using IOSizeRecorder = bvar::LatencyRecorder;
// io 相关的统计项
class IOMetric {
public:
IOMetric();
virtual ~IOMetric();
/**
* 初始化 io metric
* 主要用于曝光各metric指标
* @param prefix: 用于bvar曝光时使用的前缀
* @return 成功返回0,失败返回-1
*/
int Init(const std::string &prefix);
/**
* IO请求到来时统计requestNum
*/
void OnRequest();
/**
* IO 完成以后,记录该次IO的指标
* 错误的io不会计入iops和bps统计
* @param size: 此次io数据的大小
* @param latUS: 此次io的延时
* @param hasError: 此次io是否有错误产生
*/
void OnResponse(size_t size, int64_t latUs, bool hasError);
public:
// io请求的数量
bvar::Adder<uint64_t> reqNum_;
// 成功io的数量
bvar::Adder<uint64_t> ioNum_;
// 失败的io个数
bvar::Adder<uint64_t> errorNum_;
// 所有io的数据量
bvar::Adder<uint64_t> ioBytes_;
// io的延时情况(分位值、最大值、中位数、平均值)
bvar::LatencyRecorder latencyRecorder_;
// io大小的情况(分位值、最大值、中位数、平均值)
IOSizeRecorder sizeRecorder_;
// 最近1秒请求的IO数量
bvar::PerSecond<bvar::Adder<uint64_t>> rps_;
// 最近1秒的iops
bvar::PerSecond<bvar::Adder<uint64_t>> iops_;
// 最近1秒的出错IO数量
bvar::PerSecond<bvar::Adder<uint64_t>> eps_;
// 最近1秒的数据量
bvar::PerSecond<bvar::Adder<uint64_t>> bps_;
};
using IOMetricPtr = std::shared_ptr<IOMetric>;
enum class CSIOMetricType {
READ_CHUNK = 0,
WRITE_CHUNK = 1,
RECOVER_CHUNK = 2,
PASTE_CHUNK = 3,
DOWNLOAD = 4,
};
class CSIOMetric {
public:
CSIOMetric()
: readMetric_(nullptr), writeMetric_(nullptr), recoverMetric_(nullptr),
pasteMetric_(nullptr), downloadMetric_(nullptr) {}
~CSIOMetric() {}
/**
* 执行请求前记录metric
* @param type: 请求对应的metric类型
*/
void OnRequest(CSIOMetricType type);
/**
* 执行请求后记录metric
* 错误的io不会计入iops和bps统计
* @param type: 请求对应的metric类型
* @param size: 此次io数据的大小
* @param latUS: 此次io的延时
* @param hasError: 此次io是否有错误产生
*/
void OnResponse(CSIOMetricType type, size_t size, int64_t latUs,
bool hasError);
/**
* 获取指定类型的IOMetric
* @param type: 请求对应的metric类型
* @return 返回指定类型对应的IOMetric指针,如果类型不存在则返回nullptr
*/
IOMetricPtr GetIOMetric(CSIOMetricType type);
/**
* 初始化各项op的metric统计项
* @return 成功返回0,失败返回-1
*/
int Init(const std::string &prefix);
/**
* 释放各项op的metric资源
*/
void Fini();
protected:
// ReadChunk统计
IOMetricPtr readMetric_;
// WriteChunk统计
IOMetricPtr writeMetric_;
// RecoverChunk统计
IOMetricPtr recoverMetric_;
// PasteChunk信息
IOMetricPtr pasteMetric_;
// Download统计
IOMetricPtr downloadMetric_;
};
class CSCopysetMetric {
public:
CSCopysetMetric()
: logicPoolId_(0), copysetId_(0), chunkCount_(nullptr),
walSegmentCount_(nullptr), snapshotCount_(nullptr),
cloneChunkCount_(nullptr) {}
~CSCopysetMetric() {}
/**
* 初始化copyset级别的metric统计项
* @param logicPoolId: copyset所属逻辑池的id
* @param copysetId: copyset的id
* @return 成功返回0,失败返回-1
*/
int Init(const LogicPoolID &logicPoolId, const CopysetID ©setId);
/**
* 监控DataStore指标,主要包括chunk的数量、快照的数量等
* @param datastore: 该copyset下的datastore指针
*/
void MonitorDataStore(CSDataStore *datastore);
/**
* @brief: Monitor log storage's metric, like the number of WAL segment file
* @param logStorage: The pointer to CurveSegmentLogStorage
*/
void MonitorCurveSegmentLogStorage(CurveSegmentLogStorage *logStorage);
/**
* 执行请求前记录metric
* @param type: 请求对应的metric类型
*/
void OnRequest(CSIOMetricType type) { ioMetrics_.OnRequest(type); }
/**
* 执行请求后记录metric
* 错误的io不会计入iops和bps统计
* @param type: 请求对应的metric类型
* @param size: 此次io数据的大小
* @param latUS: 此次io的延时
* @param hasError: 此次io是否有错误产生
*/
void OnResponse(CSIOMetricType type, size_t size, int64_t latUs,
bool hasError) {
ioMetrics_.OnResponse(type, size, latUs, hasError);
}
/**
* 获取指定类型的IOMetric
* @param type: 请求对应的metric类型
* @return 返回指定类型对应的IOMetric指针,如果类型不存在则返回nullptr
*/
IOMetricPtr GetIOMetric(CSIOMetricType type) {
return ioMetrics_.GetIOMetric(type);
}
uint32_t GetChunkCount() const {
if (chunkCount_ == nullptr) {
return 0;
}
return chunkCount_->get_value();
}
uint32_t GetWalSegmentCount() const {
if (nullptr == walSegmentCount_) {
return 0;
}
return walSegmentCount_->get_value();
}
uint32_t GetSnapshotCount() const {
if (snapshotCount_ == nullptr) {
return 0;
}
return snapshotCount_->get_value();
}
uint32_t GetCloneChunkCount() const {
if (cloneChunkCount_ == nullptr) {
return 0;
}
return cloneChunkCount_->get_value();
}
private:
inline std::string Prefix() {
return "copyset_" + std::to_string(logicPoolId_) + "_" +
std::to_string(copysetId_);
}
private:
// 逻辑池id
LogicPoolID logicPoolId_;
// copyset id
CopysetID copysetId_;
// copyset上的 chunk 的数量
PassiveStatusPtr<uint32_t> chunkCount_;
// The total number of WAL segment in copyset
PassiveStatusPtr<uint32_t> walSegmentCount_;
// copyset上的 快照文件 的数量
PassiveStatusPtr<uint32_t> snapshotCount_;
// copyset上的 clone chunk 的数量
PassiveStatusPtr<uint32_t> cloneChunkCount_;
// copyset上的IO类型的metric统计
CSIOMetric ioMetrics_;
};
struct ChunkServerMetricOptions {
bool collectMetric;
// chunkserver的ip
std::string ip;
// chunkserver的端口号
uint32_t port;
ChunkServerMetricOptions()
: collectMetric(false), ip("127.0.0.1"), port(8888) {}
};
using CopysetMetricPtr = std::shared_ptr<CSCopysetMetric>;
class CopysetMetricMap {
public:
CopysetMetricMap() = default;
~CopysetMetricMap() = default;
void Add(GroupId groupId, CopysetMetricPtr metric) {
WriteLockGuard lockGuard(rwLock_);
auto it = map_.find(groupId);
if (it == map_.end()) {
map_[groupId] = metric;
}
}
void Remove(GroupId groupId) {
WriteLockGuard lockGuard(rwLock_);
auto it = map_.find(groupId);
if (it != map_.end()) {
map_.erase(it);
}
}
CopysetMetricPtr Get(GroupId groupId) {
ReadLockGuard lockGuard(rwLock_);
auto it = map_.find(groupId);
if (it == map_.end()) {
return nullptr;
}
return it->second;
}
bool Exist(GroupId groupId) {
ReadLockGuard lockGuard(rwLock_);
auto it = map_.find(groupId);
return it != map_.end();
}
uint32_t Size() {
ReadLockGuard lockGuard(rwLock_);
return map_.size();
}
void Clear() {
WriteLockGuard lockGuard(rwLock_);
map_.clear();
}
std::unordered_map<GroupId, CopysetMetricPtr> GetMap() {
ReadLockGuard lockGuard(rwLock_);
return map_;
}
private:
// 保护复制组metric map的读写锁
RWLock rwLock_;
// 各复制组metric的映射表,用GroupId作为key
std::unordered_map<GroupId, CopysetMetricPtr> map_;
};
class ChunkServerMetric : public Uncopyable {
public:
// 实现单例
static ChunkServerMetric *GetInstance();
/**
* 初始化chunkserver统计项
* @pa)ram option: 初始化配置项
* @return 成功返回0,失败返回-1
*/
int Init(const ChunkServerMetricOptions &option);
/**
* 释放metric资源
* @return 成功返回0,失败返回-1
*/
int Fini();
/**
* 请求前记录metric
* @param logicPoolId: 此次io操作所在的逻辑池id
* @param copysetId: 此次io操作所在的copysetid
* @param type: 请求类型
*/
void OnRequest(const LogicPoolID &logicPoolId, const CopysetID ©setId,
CSIOMetricType type);
/**
* 请求结束时记录该次IO指标
* 错误的io不会计入iops和bps统计
* @param logicPoolId: 此次io操作所在的逻辑池id
* @param copysetId: 此次io操作所在的copysetid
* @param type: 请求类型
* @param size: 此次io数据的大小
* @param latUS: 此次io的延时
* @param hasError: 此次io是否有错误产生
*/
void OnResponse(const LogicPoolID &logicPoolId, const CopysetID ©setId,
CSIOMetricType type, size_t size, int64_t latUs,
bool hasError);
/**
* 创建指定copyset的metric
* 如果collectMetric为false,返回0,但实际并不会创建
* @param logicPoolId: copyset所属逻辑池的id
* @param copysetId: copyset的id
* @return 成功返回0,失败返回-1,如果指定metric已存在返回失败
*/
int CreateCopysetMetric(const LogicPoolID &logicPoolId,
const CopysetID ©setId);
/**
* 获取指定copyset的metric
* @param logicPoolId: copyset所属逻辑池的id
* @param copysetId: copyset的id
* @return 成功返回指定的copyset metric,失败返回nullptr
*/
CopysetMetricPtr GetCopysetMetric(const LogicPoolID &logicPoolId,
const CopysetID ©setId);
/**
* 删除指定copyset的metric
* @param logicPoolId: copyset所属逻辑池的id
* @param copysetId: copyset的id
* @return 成功返回0,失败返回-1
*/
int RemoveCopysetMetric(const LogicPoolID &logicPoolId,
const CopysetID ©setId);
/**
* 监视chunk分配池,主要监视池中chunk的数量
* @param chunkFilePool: chunkfilePool的对象指针
*/
void MonitorChunkFilePool(FilePool *chunkFilePool);
/**
* 监视wal segment分配池,主要监视池中segment的数量
* @param walFilePool: walfilePool的对象指针
*/
void MonitorWalFilePool(FilePool *walFilePool);
/**
* 监视回收站
* @param trash: trash的对象指针
*/
void MonitorTrash(Trash *trash);
/**
* 增加 leader count 计数
*/
void IncreaseLeaderCount();
/**
* 减少 leader count 计数
*/
void DecreaseLeaderCount();
/**
* 更新配置项数据
* @param conf: 配置内容
*/
void ExposeConfigMetric(common::Configuration *conf);
/**
* 获取指定类型的IOMetric
* @param type: 请求对应的metric类型
* @return 返回指定类型对应的IOMetric指针,如果类型不存在则返回nullptr
*/
IOMetricPtr GetIOMetric(CSIOMetricType type) {
return ioMetrics_.GetIOMetric(type);
}
CopysetMetricMap *GetCopysetMetricMap() { return ©setMetricMap_; }
uint32_t GetCopysetCount() { return copysetMetricMap_.Size(); }
uint32_t GetLeaderCount() const {
if (leaderCount_ == nullptr)
return 0;
return leaderCount_->get_value();
}
uint32_t GetTotalChunkCount() {
if (chunkCount_ == nullptr)
return 0;
return chunkCount_->get_value();
}
uint32_t GetTotalSnapshotCount() {
if (snapshotCount_ == nullptr)
return 0;
return snapshotCount_->get_value();
}
uint32_t GetTotalCloneChunkCount() {
if (cloneChunkCount_ == nullptr)
return 0;
return cloneChunkCount_->get_value();
}
uint32_t GetTotalWalSegmentCount() {
if (nullptr == walSegmentCount_)
return 0;
return walSegmentCount_->get_value();
}
uint32_t GetChunkLeftCount() const {
if (chunkLeft_ == nullptr)
return 0;
return chunkLeft_->get_value();
}
uint32_t GetWalSegmentLeftCount() const {
if (nullptr == walSegmentLeft_)
return 0;
return walSegmentLeft_->get_value();
}
uint32_t GetChunkTrashedCount() const {
if (chunkTrashed_ == nullptr)
return 0;
return chunkTrashed_->get_value();
}
private:
ChunkServerMetric();
inline std::string Prefix() {
return "chunkserver_" + option_.ip + "_" + std::to_string(option_.port);
}
private:
// 初始化标志
bool hasInited_;
// 配置项
ChunkServerMetricOptions option_;
// leader 的数量
AdderPtr<uint32_t> leaderCount_;
// chunkfilepool 中剩余的 chunk 的数量
PassiveStatusPtr<uint32_t> chunkLeft_;
// walfilepool 中剩余的 wal segment 的数量
PassiveStatusPtr<uint32_t> walSegmentLeft_;
// trash 中的 chunk 的数量
PassiveStatusPtr<uint32_t> chunkTrashed_;
// chunkserver上的 chunk 的数量
PassiveStatusPtr<uint32_t> chunkCount_;
// The total number of WAL segment in chunkserver
PassiveStatusPtr<uint32_t> walSegmentCount_;
// chunkserver上的 快照文件 的数量
PassiveStatusPtr<uint32_t> snapshotCount_;
// chunkserver上的 clone chunk 的数量
PassiveStatusPtr<uint32_t> cloneChunkCount_;
// 各复制组metric的映射表,用GroupId作为key
CopysetMetricMap copysetMetricMap_;
// chunkserver上的IO类型的metric统计
CSIOMetric ioMetrics_;
// 用于单例模式的自指指针
static ChunkServerMetric *self_;
};
} // namespace chunkserver
} // namespace curve
#endif // SRC_CHUNKSERVER_CHUNKSERVER_METRICS_H_