We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3648841 commit ebb5c19Copy full SHA for ebb5c19
ydb/core/tx/columnshard/blobs_action/tier/gc.cpp
@@ -9,12 +9,12 @@ void TGCTask::DoOnExecuteTxAfterCleaning(NColumnShard::TColumnShard& /*self*/, N
9
size_t numBlobs = 0;
10
11
for (; DraftBlobIds.size() && numBlobs < NColumnShard::TLimits::MAX_BLOBS_TO_DELETE; ++numBlobs) {
12
- dbBlobs.EraseBlobToKeep(DraftBlobIds.front());
+ dbBlobs.RemoveTierDraftBlobId(GetStorageId(), DraftBlobIds.front());
13
DraftBlobIds.pop_front();
14
}
15
16
for (; DeleteBlobIds.size() && numBlobs < NColumnShard::TLimits::MAX_BLOBS_TO_DELETE; ++numBlobs) {
17
- dbBlobs.EraseBlobToDelete(DeleteBlobIds.front());
+ dbBlobs.RemoveTierBlobToDelete(GetStorageId(), DeleteBlobIds.front());
18
DeleteBlobIds.pop_front();
19
20
0 commit comments