This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-4.0-preview in repository https://gitbox.apache.org/repos/asf/doris.git
commit 4ddb9bff34a966377d28563dbccf2a9d6500b901 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 8e856977888..326d9cfc555 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 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
