As per documentation: https://mariadb.com/kb/en/mariadb/documentation/replication-cluster-multi-master/galera/getting-started-with-mariadb-galera-cluster/
Disabling query_cache (and setting size to 0M so it doesn't allocate the RAM) This is a huge reason for seeing deadlocks with Galera, hence the mandatory turning off
This commit is contained in:
parent
c94213055c
commit
5cecca9682
@ -28,8 +28,8 @@ max_connections = 500
|
||||
# CACHES AND LIMITS #
|
||||
tmp-table-size = 32M
|
||||
max-heap-table-size = 32M
|
||||
query-cache-type = 1
|
||||
query-cache-size = 50M
|
||||
query-cache-type = 0
|
||||
query-cache-size = 0M
|
||||
max-connections = 500
|
||||
thread-cache-size = 50
|
||||
open-files-limit = 65535
|
||||
|
Loading…
Reference in New Issue
Block a user