forked from ydb-platform/nbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartition.h
137 lines (105 loc) · 4.08 KB
/
partition.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
#pragma once
#include "public.h"
#include <cloud/blockstore/libs/kikimr/components.h>
#include <cloud/blockstore/libs/kikimr/events.h>
namespace NCloud::NBlockStore::NStorage::NPartition {
////////////////////////////////////////////////////////////////////////////////
#define BLOCKSTORE_PARTITION_REQUESTS(xxx, ...) \
xxx(WaitReady, __VA_ARGS__) \
xxx(StatPartition, __VA_ARGS__) \
xxx(Drain, __VA_ARGS__) \
// BLOCKSTORE_PARTITION_REQUESTS
// requests forwarded from service to partion
#define BLOCKSTORE_PARTITION_REQUESTS_FWD_SERVICE(xxx, ...) \
xxx(ReadBlocks, __VA_ARGS__) \
xxx(WriteBlocks, __VA_ARGS__) \
xxx(ZeroBlocks, __VA_ARGS__) \
xxx(CreateCheckpoint, __VA_ARGS__) \
xxx(DeleteCheckpoint, __VA_ARGS__) \
xxx(GetChangedBlocks, __VA_ARGS__) \
xxx(ReadBlocksLocal, __VA_ARGS__) \
xxx(WriteBlocksLocal, __VA_ARGS__) \
// BLOCKSTORE_PARTITION_REQUESTS_FWD_SERVICE
// requests forwarded from volume to partion
#define BLOCKSTORE_PARTITION_REQUESTS_FWD_VOLUME(xxx, ...) \
xxx(DescribeBlocks, __VA_ARGS__) \
xxx(GetUsedBlocks, __VA_ARGS__) \
xxx(GetPartitionInfo, __VA_ARGS__) \
xxx(CompactRange, __VA_ARGS__) \
xxx(GetCompactionStatus, __VA_ARGS__) \
xxx(DeleteCheckpointData, __VA_ARGS__) \
xxx(RebuildMetadata, __VA_ARGS__) \
xxx(GetRebuildMetadataStatus, __VA_ARGS__) \
xxx(ScanDisk, __VA_ARGS__) \
xxx(GetScanDiskStatus, __VA_ARGS__) \
// BLOCKSTORE_PARTITION_REQUESTS_FWD_VOLUME
////////////////////////////////////////////////////////////////////////////////
struct TEvPartition
{
//
// WaitReady
//
struct TWaitReadyRequest
{
};
struct TWaitReadyResponse
{
};
//
// StatPartition
//
struct TStatPartitionRequest
{
};
struct TStatPartitionResponse
{
NProto::TStatVolumeResponse Record;
};
//
// Drain
//
struct TDrainRequest
{
};
struct TDrainResponse
{
};
//
// Garbage collector finish report
//
struct TGarbageCollectorCompleted
{
const ui64 TabletId;
TGarbageCollectorCompleted(ui64 tabletId)
: TabletId(tabletId)
{}
};
//
// Events declaration
//
enum EEvents
{
EvBegin = TBlockStoreEvents::PARTITION_START,
EvWaitReadyRequest = EvBegin + 1,
EvWaitReadyResponse = EvBegin + 2,
EvStatPartitionRequest = EvBegin + 3,
EvStatPartitionResponse = EvBegin + 4,
EvBackpressureReport = EvBegin + 5,
EvDrainRequest = EvBegin + 6,
EvDrainResponse = EvBegin + 7,
EvGarbageCollectorCompleted = EvBegin + 8,
EvEnd
};
static_assert(EvEnd < (int)TBlockStoreEvents::PARTITION_END,
"EvEnd expected to be < TBlockStoreEvents::PARTITION_END");
BLOCKSTORE_PARTITION_REQUESTS(BLOCKSTORE_DECLARE_EVENTS)
using TEvBackpressureReport = TRequestEvent<
TBackpressureReport,
EvBackpressureReport
>;
using TEvGarbageCollectorCompleted = TRequestEvent<
TGarbageCollectorCompleted,
EvGarbageCollectorCompleted
>;
};
} // namespace NCloud::NBlockStore::NStorage::NPartition