This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 5045caf10ea36ee3940784476c8533b325001b81 Author: zhengyu <[email protected]> AuthorDate: Wed Apr 17 17:53:36 2024 +0800 [fix](conf) make be conf disable_storage_page_cache modifiable (#33773) Signed-off-by: freemandealer <[email protected]> --- 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 15deeb6c746..07d24df34f6 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -321,7 +321,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 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
