for a mariaDB Cluster I'm trying to build the following structure:
I have 3 Nodes.
Node 1 replicates database "catalogue" to node 2 and ignores database "addresses".
node 2 has both "catalogue" and "addresses" on it.
node 3 only replicates "addresses".
Is it possible to tell a node to ignore a specific database? All I've found was this command: https://mariadb.com/kb/en/mariadb/replication-and-binary-log-server-system-variables/#replicate_ignore_db
It seems, that this only works for the whole cluster, but not a single node?