I've just finished setting up the 3 nodes mariadb (galera) cluster (let's call the nodes node1, node2 and node3). In order to have the cluster up to date with currently working mariadb database (let's call it dev_db) we created a replication of this dev_db to node1 so dev_db is a master and node1 is a slave. Replication is working properly so node1 is up to date with dev_db. I thought that replicated data to node1 cluster will be able also transfered to other nodes so that whole cluster will be 'consistent'. Unfortunately what is happening is that replicated data from dev_db to node1 is not propagated to the rest of the nodes.
When I add some sample data to node1 I can see that this data is propagated to other nodes (node2 and node3) so cluster is fine.
The question is how to configure this setup so that dev_db will be feeding the cluster with new data so that whole cluster will be up to date.
Many thanks.