Skip to content

Commit

Permalink
MDEV-17428: Update wsrep_max_ws_rows and wsrep_max_ws_size values in …
Browse files Browse the repository at this point in the history
…wsrep.cnf.sh

Since MariaDB 10.1.17 the new default values for wsrep_max_ws_rows and wsrep_max_ws_size were set:

wsrep_max_ws_rows

Default Value:
0 (>= MariaDB Galera 10.0.27, MariaDB 10.1.17)
131072 (<= MariaDB Galera 10.0.26, MariaDB 10.1.16)
wsrep_max_ws_size

Default Value:
2147483647 (2GB, >= MariaDB Galera 10.0.27, MariaDB 10.1.17)
1073741824 (1GB, <= MariaDB Galera 10.0.26, MariaDB 10.1.16)
  • Loading branch information
Jan Lindström committed Feb 21, 2019
1 parent d9f7b6b commit b88a803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support-files/wsrep.cnf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ wsrep_slave_threads=1
wsrep_certify_nonPK=1

# Maximum number of rows in write set
wsrep_max_ws_rows=131072
wsrep_max_ws_rows=0

# Maximum size of write set
wsrep_max_ws_size=1073741824
wsrep_max_ws_size=2147483647

# to enable debug level logging, set this to 1
wsrep_debug=0
Expand Down

0 comments on commit b88a803

Please sign in to comment.