-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathgarbage_queue.cpp
More file actions
233 lines (186 loc) · 5.48 KB
/
Copy pathgarbage_queue.cpp
File metadata and controls
233 lines (186 loc) · 5.48 KB
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
#include "garbage_queue.h"
#include <util/generic/set.h>
namespace NCloud::NBlockStore::NStorage::NPartition2 {
////////////////////////////////////////////////////////////////////////////////
struct TGarbageQueue::TImpl
{
struct TBlobs : TSet<TPartialBlobId>
{
bool Add(const TPartialBlobId& blobId)
{
Y_ABORT_UNLESS(!IsDeletionMarker(blobId));
return insert(blobId).second;
}
bool Remove(const TPartialBlobId& blobId)
{
return erase(blobId);
}
size_t Count(ui64 maxCommitId) const
{
auto end = lower_bound(TPartialBlobId(maxCommitId, Max()));
return std::distance(begin(), end);
}
TVector<TPartialBlobId> Get(ui64 maxCommitId) const
{
TVector<TPartialBlobId> result;
auto end = lower_bound(TPartialBlobId(maxCommitId, Max()));
for (auto it = begin(); it != end; ++it) {
result.push_back(*it);
}
return result;
}
};
TBlobs NewBlobs;
TBlobs GarbageBlobs;
struct TBarrierComparer
{
using is_transparent = void;
template <typename T1, typename T2>
bool operator ()(const T1& l, const T2& r) const
{
return GetCommitId(l) < GetCommitId(r);
}
};
struct TBarrier
{
const ui64 CommitId;
size_t RefCount;
TVector<TPartialBlobId> GarbageBlobs;
explicit TBarrier(ui64 commitId)
: CommitId(commitId)
, RefCount(1)
{}
};
static ui64 GetCommitId(ui64 commitId)
{
return commitId;
}
static ui64 GetCommitId(const TBarrier& b)
{
return b.CommitId;
}
using TBarriers = TSet<TBarrier, TBarrierComparer>;
TBarriers Barriers;
};
////////////////////////////////////////////////////////////////////////////////
TGarbageQueue::TGarbageQueue()
: Impl(new TImpl())
{}
TGarbageQueue::~TGarbageQueue()
{}
////////////////////////////////////////////////////////////////////////////////
// New blobs
bool TGarbageQueue::AddNewBlob(const TPartialBlobId& blobId)
{
return Impl->NewBlobs.Add(blobId);
}
bool TGarbageQueue::AddNewBlobs(const TVector<TPartialBlobId>& blobIds)
{
for (const auto& blobId: blobIds) {
if (!Impl->NewBlobs.Add(blobId)) {
return false;
}
}
return true;
}
bool TGarbageQueue::RemoveNewBlob(const TPartialBlobId& blobId)
{
return Impl->NewBlobs.Remove(blobId);
}
size_t TGarbageQueue::GetNewBlobsCount(ui64 maxCommitId) const
{
return Impl->NewBlobs.Count(maxCommitId);
}
TVector<TPartialBlobId> TGarbageQueue::GetNewBlobs(ui64 maxCommitId) const
{
return Impl->NewBlobs.Get(maxCommitId);
}
////////////////////////////////////////////////////////////////////////////////
// Garbage blobs
bool TGarbageQueue::AddGarbageBlob(const TPartialBlobId& blobId)
{
if (Impl->Barriers) {
// garbage will be collected when this barrier is released
auto& barrier = const_cast<TImpl::TBarrier&>(*Impl->Barriers.rbegin());
barrier.GarbageBlobs.push_back(blobId);
GarbageQueueBytes += blobId.BlobSize();
return true;
}
bool result = Impl->GarbageBlobs.Add(blobId);
if (result) {
GarbageQueueBytes += blobId.BlobSize();
}
return result;
}
bool TGarbageQueue::AddGarbageBlobs(const TVector<TPartialBlobId>& blobIds)
{
for (const auto& blobId: blobIds) {
if (!Impl->GarbageBlobs.Add(blobId)) {
return false;
}
}
return true;
}
bool TGarbageQueue::RemoveGarbageBlob(const TPartialBlobId& blobId)
{
bool result = Impl->GarbageBlobs.Remove(blobId);
if (result) {
GarbageQueueBytes -= blobId.BlobSize();
}
return result;
}
size_t TGarbageQueue::GetGarbageBlobsCount(ui64 maxCommitId) const
{
return Impl->GarbageBlobs.Count(maxCommitId);
}
TVector<TPartialBlobId> TGarbageQueue::GetGarbageBlobs(ui64 maxCommitId) const
{
return Impl->GarbageBlobs.Get(maxCommitId);
}
ui64 TGarbageQueue::GetGarbageQueueBytes() const
{
return GarbageQueueBytes;
}
////////////////////////////////////////////////////////////////////////////////
// GC barriers
void TGarbageQueue::AcquireCollectBarrier(ui64 commitId)
{
TImpl::TBarriers::iterator it;
bool inserted;
std::tie(it, inserted) = Impl->Barriers.emplace(commitId);
if (!inserted) {
auto& barrier = const_cast<TImpl::TBarrier&>(*it);
++barrier.RefCount;
}
}
void TGarbageQueue::ReleaseCollectBarrier(ui64 commitId)
{
{
auto it = Impl->Barriers.find(commitId);
Y_ABORT_UNLESS(it != Impl->Barriers.end());
auto& barrier = const_cast<TImpl::TBarrier&>(*it);
Y_ABORT_UNLESS(barrier.RefCount > 0);
--barrier.RefCount;
}
// we have to release barriers in order
for (auto it = Impl->Barriers.begin(); it != Impl->Barriers.end(); ) {
auto& barrier = const_cast<TImpl::TBarrier&>(*it);
if (barrier.RefCount) {
break;
}
// now we can safely collect garbage
for (const auto& blobId: barrier.GarbageBlobs) {
Impl->GarbageBlobs.Add(blobId);
}
it = Impl->Barriers.erase(it);
}
}
ui64 TGarbageQueue::GetCollectCommitId() const
{
if (Impl->Barriers) {
const auto& barrier = *Impl->Barriers.begin();
return barrier.CommitId - 1;
}
return InvalidCommitId;
}
} // namespace NCloud::NBlockStore::NStorage::NPartition2