# MaxScale documentation: # https://mariadb.com/kb/en/mariadb-maxscale-25/ # Global parameters # # Complete list of configuration options: # https://mariadb.com/kb/en/mariadb-maxscale-25-mariadb-maxscale-configuration-guide/ [maxscale] threads=auto # Server definitions # # Set the address of the server to the network # address of a MariaDB server. # [server1] type=server address=10.8.25.199 port=3306 protocol=MariaDBBackend # Monitor for the servers # # This will keep MaxScale aware of the state of the servers. # MariaDB Monitor documentation: # https://mariadb.com/kb/en/maxscale-25-monitors/ [MariaDB-Monitor] type=monitor module=mariadbmon servers=server1 user=maxuser password=maxpwd monitor_interval=2000 # The Replication Proxy service #[binglog-service] #type=service #router=binlogrouter #servers=server1 #user=maxuser #password=maxpwd #server_id=1999 #datadir=/MaxscaleCDC/maxscale/binlogs/ [avro-converter] type=service router=avrorouter servers=server1 user=maxuser password=maxpwd binlogdir=/MaxscaleCDC/maxscale/binlogs/ filestem=mariadb-bin avrodir=/MaxscaleCDC/maxscale/avro/ block_size=1024K #[binlog-listener] #type=listener #service=binglog-service #protocol=MariaDBClient #port=3001 [avro-listener] type=listener service=avro-converter protocol=CDC port=4001 # Service definitions # # Service Definition for a read-only service and # a read/write splitting service. # # ReadConnRoute documentation: # https://mariadb.com/kb/en/mariadb-maxscale-25-readconnroute/ #[Read-Only-Service] #type=service #router=readconnroute #servers=server1 #user=myuser #password=mypwd #router_options=slave # ReadWriteSplit documentation: # https://mariadb.com/kb/en/mariadb-maxscale-25-readwritesplit/ #[Read-Write-Service] #type=service #router=readwritesplit #servers=server1 #user=myuser #password=mypwd # Listener definitions for the services # # These listeners represent the ports the # services will listen on. # #[Read-Only-Listener] #type=listener #service=Read-Only-Service #protocol=MariaDBClient #port=4008 #[Read-Write-Listener] #type=listener #service=Read-Write-Service #protocol=MariaDBClient #port=4006