mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-5205 - MariaDB does not start if more than 128 cpu's are available
- thread_pool_size command line option upper limit increased to 100 000 (same as for max_connections) - thread_pool_size system variable upper limit is maximum of 128 or the value given at command line - thread groups are now allocated dynamically Different limit for command line option and system variable was done to avoid additional mutex for all_groups and threadpool_max_size.
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
uint threadpool_min_threads;
|
||||
uint threadpool_idle_timeout;
|
||||
uint threadpool_size;
|
||||
uint threadpool_max_size;
|
||||
uint threadpool_stall_limit;
|
||||
uint threadpool_max_threads;
|
||||
uint threadpool_oversubscribe;
|
||||
|
Reference in New Issue
Block a user