This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new f2a751e3a69 [chore](recycler) Set instance_recycler_worker_pool_size=8 by default to accelerate recycling rowset (#39977) f2a751e3a69 is described below commit f2a751e3a69be7c616e86fc9a1ecbc06dd8b2a5c 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