A number of options need to be set in order for Galera Cluster to work when using MariaDB. These should be set in the MariaDB option file.
Several options are mandatory, which means that they *must* be set in order for Galera Cluster to be enabled or to work properly with MariaDB. The mandatory options are:
wsrep_provider
— Path to the Galera library wsrep_cluster_address
— See Galera Cluster address format and usage binlog_format=ROW
— See Binary Log Formats default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
innodb_doublewrite=1
— This is the default value, but it should not be changed when using Galera provider version >= 2.0. query_cache_size=0
— Only mandatory for MariaDB versions prior to MariaDB Galera Cluster 5.5.40, MariaDB Galera Cluster 10.0.14, and MariaDB 10.1.2. wsrep_on=ON
— Enable wsrep replication (starting 10.1.1) These are optional optimizations that can be made to improve performance.
innodb_flush_log_at_trx_commit=0
— This is not usually recommended in the case of standard MariaDB. However, it is a bit safer with Galera Cluster, since inconsistencies can always be fixed by recovering from another node. Like with MariaDB replication, write sets that are received by a node with Galera Cluster's certification-based replication are not written to the binary log by default. If you would like a node to write its replicated write sets to the binary log, then you will have to set log_slave_updates=ON
. This is especially helpful if the node is a replication master. See Using MariaDB Replication with MariaDB Galera Cluster: Configuring a Cluster Node as a Replication Master.
Like with MariaDB replication, replication filters can be used to filter write sets from being replicated by Galera Cluster's certification-based replication. However, they should be used with caution because they may not work as you'd expect.
The following replication filters are honored for InnoDB DML, but not DDL:
The following replication filters are honored for DML and DDL for tables that use both the InnoDB and MyISAM storage engines:
However, it should be kept in mind that if replication filters cause inconsistencies that lead to replication errors, then nodes may abort.
See also MDEV-421 and MDEV-6229.
Galera Cluster needs access to the following ports:
mysqldump
method. This can be changed by setting port
. wsrep_node_address
. ist.recv_addr
in wsrep_provider_options
. mysqldump
. Can be changed by setting wsrep_sst_receive_address
. If you want to run multiple Galera Cluster instances on one server, then you can do so by starting each instance with mysqld_multi
, or if you are using systemd, then you can use the relevant systemd method for interacting with multiple MariaDB instances.
You need to ensure that each instance is configured with a different datadir
.
You also need to ensure that each instance is configured with different network ports.
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/configuring-mariadb-galera-cluster/