mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
Found two bugs (1) have_committing_connections was missing mutex unlock on one exit case. As this function is called on a loop it caused mutex lock when we already owned the mutex. This could cause hang. (2) wsrep_RSU_begin did set up error code when partition to be dropped could not be MDL-locked because of concurrent operations but wrong error code was propagated to upper layer causing error to be ignored. This could have also caused the hang.
19 lines
535 B
INI
19 lines
535 B
INI
!include ../galera_4nodes.cnf
|
|
|
|
[mysqld.1]
|
|
wsrep_provider_options='base_port=@mysqld.1.#galera_port;gcache.size=10M;gmcast.segment=1'
|
|
wsrep_slave_threads=10
|
|
|
|
[mysqld.2]
|
|
wsrep_provider_options='base_port=@mysqld.2.#galera_port;gcache.size=10M;gmcast.segment=1'
|
|
wsrep_slave_threads=10
|
|
|
|
[mysqld.3]
|
|
wsrep_provider_options='base_port=@mysqld.3.#galera_port;gcache.size=10M;gmcast.segment=2'
|
|
wsrep_slave_threads=10
|
|
|
|
[mysqld.4]
|
|
wsrep_provider_options='base_port=@mysqld.4.#galera_port;gcache.size=10M;gmcast.segment=3'
|
|
wsrep_slave_threads=10
|
|
|