Skip to content

Commit a7f31cd

Browse files
committed
Ignore stored GCBarrierPreparation
1 parent 3c55a62 commit a7f31cd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ydb/core/tx/columnshard/blobs_action/bs/blob_manager.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,12 @@ bool TBlobManager::LoadState(IBlobManagerDb& db, const TTabletId selfTabletId) {
140140
if (!db.LoadLastGcBarrier(LastCollectedGenStep)) {
141141
return false;
142142
}
143-
if (!db.LoadGCBarrierPreparation(GCBarrierPreparation)) {
143+
//https://github.com/ydb-platform/ydb/issues/7468
144+
TGenStep storedGCBarrierPreparation;
145+
if (!db.LoadGCBarrierPreparation(storedGCBarrierPreparation)) {
144146
return false;
145147
}
148+
AFL_INFO(NKikimrServices::TX_COLUMNSHARD_BLOBS_BS)("mem_genstep", GCBarrierPreparation)("db_genstep", storedGCBarrierPreparation);
146149
AFL_VERIFY(!GCBarrierPreparation.Generation() || LastCollectedGenStep <= GCBarrierPreparation)("prepared", GCBarrierPreparation)("last", LastCollectedGenStep);
147150

148151
// Load the keep and delete queues

0 commit comments

Comments
 (0)