Hi,
The errors are not critical but the one about the unexpected parameter
should not have appeared as far as I know. The Debug Interface error is
generated because it has no servers, this is a known bug about this
module.
You can use the readwritesplit router to split read/write queries to
different servers. The way it works with a galera cluster is that it
sets one node as the "master" node where all writes go and it balances
the read queries between the other nodes. You can do this by replacing
the Galera Service with the following one:
[Galera Service]
type=service
router=readwritesplit
servers=dbserver1,dbserver2,dbserver3
user=maxuser
passwd=maxpwd
max_slave_connections=100%
The max_slave_connections determines the number of "slave" nodes each
session uses for routing read queries. Setting it to 100% spreads the
read load over all the nodes. You can look up the other parameters for
the readwritesplit router from the template configuration file I linked
before.
Markus