From f7a77ec5d5cd8ef122dccc55bebccbe9a0c66118 Mon Sep 17 00:00:00 2001 From: Chen Zhang Date: Fri, 2 Dec 2022 22:08:09 +0800 Subject: [PATCH] [improvement](config) update high_priority_flush_thread_num_per_store default value to 6 --- 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 d46d7abd3d7a0e..b8a01031848a69 100644 --- a/be/src/common/config.h +++ b/be/src/common/config.h @@ -553,7 +553,7 @@ CONF_mInt64(storage_flood_stage_left_capacity_bytes, "1073741824"); // 1GB // number of thread for flushing memtable per store CONF_Int32(flush_thread_num_per_store, "6"); // number of thread for flushing memtable per store, for high priority load task -CONF_Int32(high_priority_flush_thread_num_per_store, "1"); +CONF_Int32(high_priority_flush_thread_num_per_store, "6"); // config for tablet meta checkpoint CONF_mInt32(tablet_meta_checkpoint_min_new_rowsets_num, "10");