mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
increase default for max threads in the pool to max allowed value (64K) currently
This commit is contained in:
@@ -3359,7 +3359,7 @@ static Sys_var_uint Sys_threadpool_max_threads(
|
||||
"thread_pool_max_threads",
|
||||
"Maximum allowed number of worker threads in the thread pool",
|
||||
GLOBAL_VAR(threadpool_max_threads), CMD_LINE(REQUIRED_ARG),
|
||||
VALID_RANGE(1, 65536), DEFAULT(1000), BLOCK_SIZE(1),
|
||||
VALID_RANGE(1, 65536), DEFAULT(65536), BLOCK_SIZE(1),
|
||||
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),
|
||||
ON_UPDATE(fix_tp_max_threads)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user