Commit 2e95eb2c authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

MariaDB: use READ-COMMITTED isolation level instead of removed innodb_locks_unsafe_for_binlog.

parent b20ecdae
......@@ -34,7 +34,7 @@ md5sum = fda911d5ef9efee365f1b0ff9843a50b
[template-neo-my-cnf]
filename = my.cnf.in
md5sum = 56ea8f452d9e1526157ab9d03e631e1a
md5sum = 49d91b5a84604a721a8906b258d25f86
[template-neo]
filename = instance.cfg.in
......
......@@ -34,7 +34,7 @@ plugin-load = {{ ';'.join(plugins) }}
max_allowed_packet = 128M
query_cache_size = 32M
innodb_locks_unsafe_for_binlog = 1
transaction-isolation = READ-COMMITTED
# Some dangerous settings you may want to uncomment temporarily
# if you only want performance or less disk access.
......
......@@ -42,7 +42,7 @@ md5sum = 43556e5bca8336dd543ae8068512aa6d
[template-my-cnf]
filename = my.cnf.in
md5sum = 2c553103f1196f95e4b6d0716a1e0638
md5sum = 032fb3f3760ae3f2a0172a23e6d01368
[template-mariadb-initial-setup]
filename = mariadb_initial_setup.sql.in
......
......@@ -48,7 +48,7 @@ max_connections = {{ parameter_dict['max-connection-count'] }}
# very important to allow parallel indexing
# Note: this is compatible with binlog-based incremental backups, because ERP5
# doesn't use "insert ... select" (in any number of queries) pattern.
innodb_locks_unsafe_for_binlog = 1
transaction-isolation = READ-COMMITTED
# disable innodb_change_buffering to prevent potential risk of crash or data corruption,
# that is default from 10.5.14.
......
......@@ -42,7 +42,7 @@ md5sum = f45dc4568b63de39f49b8fecca5deef1
[template-my-cnf]
filename = my.cnf.in
md5sum = 2c553103f1196f95e4b6d0716a1e0638
md5sum = 032fb3f3760ae3f2a0172a23e6d01368
[template-mariadb-initial-setup]
filename = mariadb_initial_setup.sql.in
......
......@@ -48,7 +48,7 @@ max_connections = {{ parameter_dict['max-connection-count'] }}
# very important to allow parallel indexing
# Note: this is compatible with binlog-based incremental backups, because ERP5
# doesn't use "insert ... select" (in any number of queries) pattern.
innodb_locks_unsafe_for_binlog = 1
transaction-isolation = READ-COMMITTED
# disable innodb_change_buffering to prevent potential risk of crash or data corruption,
# that is default from 10.5.14.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment