1
0
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:
Vladislav Vaintroub
2016-11-04 13:00:11 +00:00
parent d96ee168a1
commit def258061b
5 changed files with 23 additions and 23 deletions

View File

@@ -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)
);