-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathCachedBlockMetrics.h
42 lines (36 loc) · 1.11 KB
/
CachedBlockMetrics.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
#pragma once
#include <base/defines.h>
#include <fmt/format.h>
#include <base/types.h>
namespace DB
{
class WriteBuffer;
class ReadBuffer;
namespace Streaming
{
struct CachedBlockMetrics
{
size_t total_rows = 0;
size_t total_blocks = 0;
size_t total_metadata_bytes = 0;
size_t total_data_bytes = 0;
size_t gced_blocks = 0;
ALWAYS_INLINE size_t totalBytes() const { return total_metadata_bytes + total_data_bytes; }
std::string string() const
{
return fmt::format(
"total_rows={} total_bytes={} total_blocks={} gced_blocks={} (total_metadata_bytes:{} total_data_bytes:{})",
total_rows,
totalBytes(),
total_blocks,
gced_blocks,
total_metadata_bytes,
total_data_bytes);
}
/// [Legacy] We don't need to serialize this anymore on new impl, since the metrics is volated. will update it back during recover
static constexpr VersionType SERDE_REQUIRED_MAX_VERSION = 1;
void serialize(WriteBuffer & wb, VersionType version) const;
void deserialize(ReadBuffer & rb, VersionType version);
};
}
}