From 44929a9a890c7956a5ff1e647ce06f5b4aa32cf4 Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 6 Jul 2023 15:34:50 +0800 Subject: [PATCH] =?UTF-8?q?Set=20min=5Flevel=5Ffor=5Fcustom=5Ffilter=20as?= =?UTF-8?q?=200=20by=20default=20to=20delete=20expired=20d=E2=80=A6=20(#56?= =?UTF-8?q?22)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reset min_level_for_custom_filter as 0 by default to delete expired data during compaction --- src/storage/CompactionFilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/CompactionFilter.h b/src/storage/CompactionFilter.h index 2c47e1576a9..d69979c0736 100644 --- a/src/storage/CompactionFilter.h +++ b/src/storage/CompactionFilter.h @@ -17,7 +17,7 @@ #include "storage/StorageFlags.h" DEFINE_int32(min_level_for_custom_filter, - 4, + 0, "Minimal level compaction which will go through custom compaction filter"); namespace nebula {