|
22 | 22 | namespace doris::cloud::config {
|
23 | 23 |
|
24 | 24 | CONF_Int32(brpc_listen_port, "5000");
|
25 |
| -CONF_Int32(brpc_num_threads, "-1"); |
| 25 | +CONF_Int32(brpc_num_threads, "64"); |
| 26 | +// connections without data transmission for so many seconds will be closed |
26 | 27 | // Set -1 to disable it.
|
27 | 28 | CONF_Int32(brpc_idle_timeout_sec, "-1");
|
28 | 29 | CONF_String(hostname, "");
|
@@ -65,10 +66,10 @@ CONF_mInt64(dropped_partition_retention_seconds, "10800"); // 3h
|
65 | 66 | CONF_Strings(recycle_whitelist, ""); // Comma seprated list
|
66 | 67 | // These instances will not be recycled, only effective when whitelist is empty.
|
67 | 68 | CONF_Strings(recycle_blacklist, ""); // Comma seprated list
|
68 |
| -CONF_mInt32(instance_recycler_worker_pool_size, "8"); |
| 69 | +CONF_mInt32(instance_recycler_worker_pool_size, "32"); |
69 | 70 | CONF_Bool(enable_checker, "false");
|
70 | 71 | // The parallelism for parallel recycle operation
|
71 |
| -CONF_Int32(recycle_pool_parallelism, "10"); |
| 72 | +CONF_Int32(recycle_pool_parallelism, "40"); |
72 | 73 | // Currently only used for recycler test
|
73 | 74 | CONF_Bool(enable_inverted_check, "false");
|
74 | 75 | // interval for scanning instances to do checks and inspections
|
|
0 commit comments