mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge remote-tracking branch 'origin/bb-10.2-ext' into 10.3
This commit is contained in:
@ -2360,10 +2360,10 @@ export sys_var *Sys_old_passwords_ptr= &Sys_old_passwords; // for sql_acl.cc
|
||||
static Sys_var_ulong Sys_open_files_limit(
|
||||
"open_files_limit",
|
||||
"If this is not 0, then mysqld will use this value to reserve file "
|
||||
"descriptors to use with setrlimit(). If this value is 0 then mysqld "
|
||||
"will reserve max_connections*5 or max_connections + table_cache*2 "
|
||||
"(whichever is larger) number of file descriptors",
|
||||
READ_ONLY GLOBAL_VAR(open_files_limit), CMD_LINE(REQUIRED_ARG),
|
||||
"descriptors to use with setrlimit(). If this value is 0 or autoset "
|
||||
"then mysqld will reserve max_connections*5 or max_connections + "
|
||||
"table_cache*2 (whichever is larger) number of file descriptors",
|
||||
AUTO_SET READ_ONLY GLOBAL_VAR(open_files_limit), CMD_LINE(REQUIRED_ARG),
|
||||
VALID_RANGE(0, OS_FILE_LIMIT), DEFAULT(0), BLOCK_SIZE(1));
|
||||
|
||||
/// @todo change to enum
|
||||
|
Reference in New Issue
Block a user