From d3ac1af82de89561a984d314fa6caed5cbc6b1a8 Mon Sep 17 00:00:00 2001 From: freemandealer Date: Wed, 17 Apr 2024 16:08:27 +0800 Subject: [PATCH] [fix](conf) make be conf disable_storage_page_cache modifiable Signed-off-by: freemandealer --- be/src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index 212233dcbae6ee..8510bb8e819c35 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -326,7 +326,7 @@ DEFINE_Int32(storage_page_cache_shard_size, "256"); // all storage page cache will be divided into data_page_cache and index_page_cache DEFINE_Int32(index_page_cache_percentage, "10"); // whether to disable page cache feature in storage -DEFINE_Bool(disable_storage_page_cache, "false"); +DEFINE_mBool(disable_storage_page_cache, "false"); // whether to disable row cache feature in storage DEFINE_mBool(disable_storage_row_cache, "true"); // whether to disable pk page cache feature in storage