mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
Merge branch '10.0-galera' into bb-10.1-serg
This commit is contained in:
commit
90266e8a0e
113 changed files with 1771 additions and 364 deletions
|
|
@ -4864,13 +4864,14 @@ static Sys_var_charptr Sys_wsrep_start_position (
|
|||
static Sys_var_ulong Sys_wsrep_max_ws_size (
|
||||
"wsrep_max_ws_size", "Max write set size (bytes)",
|
||||
GLOBAL_VAR(wsrep_max_ws_size), CMD_LINE(REQUIRED_ARG),
|
||||
/* Upper limit is 65K short of 4G to avoid overlows on 32-bit systems */
|
||||
VALID_RANGE(1024, WSREP_MAX_WS_SIZE), DEFAULT(1073741824UL), BLOCK_SIZE(1));
|
||||
VALID_RANGE(1024, WSREP_MAX_WS_SIZE), DEFAULT(WSREP_MAX_WS_SIZE),
|
||||
BLOCK_SIZE(1), NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),
|
||||
ON_UPDATE(wsrep_max_ws_size_update));
|
||||
|
||||
static Sys_var_ulong Sys_wsrep_max_ws_rows (
|
||||
"wsrep_max_ws_rows", "Max number of rows in write set",
|
||||
GLOBAL_VAR(wsrep_max_ws_rows), CMD_LINE(REQUIRED_ARG),
|
||||
VALID_RANGE(1, 1048576), DEFAULT(131072), BLOCK_SIZE(1));
|
||||
VALID_RANGE(0, 1048576), DEFAULT(0), BLOCK_SIZE(1));
|
||||
|
||||
static Sys_var_charptr Sys_wsrep_notify_cmd(
|
||||
"wsrep_notify_cmd", "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue