This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 185b9023227 [chore](recycler) Set instance_recycler_worker_pool_size=8 by default to accelerate recycling rowset (#39977) 185b9023227 is described below commit 185b9023227a3ba5a7f78a92d25eab3c5050ac96 Author: Gavin Chou <gavineaglec...@gmail.com> AuthorDate: Tue Aug 27 20:00:09 2024 +0800 [chore](recycler) Set instance_recycler_worker_pool_size=8 by default to accelerate recycling rowset (#39977) --- cloud/src/common/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/src/common/config.h b/cloud/src/common/config.h index 2b00e3d2245..2b31eed3f24 100644 --- a/cloud/src/common/config.h +++ b/cloud/src/common/config.h @@ -65,7 +65,7 @@ CONF_mInt64(dropped_partition_retention_seconds, "10800"); // 3h CONF_Strings(recycle_whitelist, ""); // Comma seprated list // These instances will not be recycled, only effective when whitelist is empty. CONF_Strings(recycle_blacklist, ""); // Comma seprated list -CONF_mInt32(instance_recycler_worker_pool_size, "1"); +CONF_mInt32(instance_recycler_worker_pool_size, "8"); CONF_Bool(enable_checker, "false"); // The parallelism for parallel recycle operation CONF_Int32(recycle_pool_parallelism, "10"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org