aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexvru <alexvru@ydb.tech>2023-08-28 11:03:22 +0300
committeralexvru <alexvru@ydb.tech>2023-08-28 11:18:21 +0300
commit1a01c1b3371f79b0ab44e91d1c0af4763b8f6c80 (patch)
tree61d1d8660ac837bceba75154570f2603154f8c53
parenta6800f8da1f181b1fca2021417520a2f97e4ff43 (diff)
downloadydb-1a01c1b3371f79b0ab44e91d1c0af4763b8f6c80.tar.gz
Disable Osiris garbage filtering KIKIMR-19154
-rw-r--r--ydb/core/blobstorage/vdisk/anubis_osiris/blobstorage_osiris.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/blobstorage_osiris.cpp b/ydb/core/blobstorage/vdisk/anubis_osiris/blobstorage_osiris.cpp
index 019c048d49..046f2d54ce 100644
--- a/ydb/core/blobstorage/vdisk/anubis_osiris/blobstorage_osiris.cpp
+++ b/ydb/core/blobstorage/vdisk/anubis_osiris/blobstorage_osiris.cpp
@@ -92,10 +92,10 @@ namespace NKikimr {
const auto& topology = *HullCtx->VCtx->Top; // topology we have
Y_VERIFY(topology.BelongsToSubgroup(self, CurKey.Hash())); // check that blob belongs to subgroup
- if (!Filter->Check(CurKey, CurIt.GetMemRec(), CurIt.GetMemRecsMerged(), HullCtx->AllowKeepFlags)) {
- // filter check returned false
- return false;
- }
+ //if (!Filter->Check(CurKey, CurIt.GetMemRec(), CurIt.GetMemRecsMerged(), HullCtx->AllowKeepFlags)) {
+ // // filter check returned false
+ // return false;
+ //}
const TSubgroupPartLayout layout = TSubgroupPartLayout::CreateFromIngress(CurIngress, topology.GType);
const ui32 idxInSubgroup = topology.GetIdxInSubgroup(self, CurKey.Hash());