From 2426d8e6e828531c5a0fcdae0103b9b8f5441e7b Mon Sep 17 00:00:00 2001 From: lihangyu <15605149486@163.com> Date: Fri, 17 Feb 2023 10:21:28 +0800 Subject: [PATCH] [chore](be-config) set disable_storage_row_cache default true to default disable row cache (#16827) --- be/src/common/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/common/config.h b/be/src/common/config.h index abf2bf3574f0f0..f379924e2011ad 100644 --- a/be/src/common/config.h +++ b/be/src/common/config.h @@ -261,7 +261,7 @@ CONF_Int32(index_page_cache_percentage, "10"); // whether to disable page cache feature in storage CONF_Bool(disable_storage_page_cache, "false"); // whether to disable row cache feature in storage -CONF_Bool(disable_storage_row_cache, "false"); +CONF_Bool(disable_storage_row_cache, "true"); CONF_Bool(enable_storage_vectorization, "true");