Hi Guys,
I wanted to know about the usage of mysql-bin log files which will be enabled in the Galera cluster setup.
When we setup a MariaDB 10.1 version to enable the clustering feature we have few mandatory settings like
#clusterconfig
log-bin=/home/fds/galera/mysql-1/data/mysql-bin.log
binlog_format=ROW
query_cache_size=0
innodb_doublewrite=1
default-storage-engine=innodb
innodb_autoinc_lock_mode=2
wsrep_provider=/home/fds/galera/mysql-1/lib/galera/libgalera_smm.so
wsrep_on=ON
wsrep_cluster_name="gcluster"
wsrep_cluster_address="gcomm://NODE2,NODE3"
wsrep_provider_options="pc.weight=1"
wsrep_node_name="gcdeva01"
#State Snapshot Transfer method
wsrep_sst_method=rsync
Here the bin log path is mentioned in every node to enable the cluster feature but i was wandering the how the data will be replicated to all the other nodes.
I don't think that these bin log files are being used to transfer the data to the other nodes.
SST is not using BIN log files.
Please let me know the mechanism behind this.
How the galera cluster will transfer data to all nodes and i am not talking about the transferring methods but the way of syncing data.
For example in master slave concept.
Bin log files are converted to Relay log files in slave and being used
So coming to Galera Cluster how it will be used ?
Thanks in advance.Please help me out.
Regards
SairamK