Comments - Readwritesplit

1 year, 9 months ago Richard Lee

Is it possible to setup a readwritesplitter so that queries to a specific database or table will be routed to the master instead of the slave?

 
1 year, 9 months ago Markus Mäkelä

You can use the namedserverfilter to force certain queries to be routed to the current master server.

Something like this should work:

[NamedServerFilter]
type=filter
module=namedserverfilter
match01=SELECT.*MyTable
target01=->master

Then just add filters=NamedServerFilter to the readwritesplit service.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.