Hello Folks,
Do you know about any possible issue when running MaxScale for a simple master/slave when this pair of backends are MySQL RDS?
Also, I see the below for my current replica on the MaxScale log file:
2021-08-31 21:51:58.508 warning: (2709) (rwsplit-service) (set_rlag_state): Replication lag of 'dbreplica' is -1 seconds, which is above the configured limit 30s. 'dbreplica' is excluded from query routing.
As this is a test environment, the replica isn't lagging, and I wonder if this is related to the GTID diffs between MariaDB and MySQL.
My basic config for the ReadWriteSplit Router is below:
[maxscale]
threads=auto
log_augmentation=1
ms_timestamp=1
admin_host=0.0.0.0
admin_port=8989
admin_secure_gui=false
writeq_high_water=16M
writeq_low_water=128K
[rwsplit-service]
type=service
router=readwritesplit
user=maxusr
password=FFC7...
max_sescmd_history=300
prune_sescmd_history=true
master_reconnection=true
master_failure_mode=fail_on_write
max_slave_replication_lag=30s
use_sql_variables_in=master
Any hints? Thanks!