mysql 主从同步 mycat 读写分离 分库分表(二) mycat 读写分离

基于mysql主从同步:https://blog.csdn.net/qq_35119422/article/details/79816705

首先writeHost和readHost需实现主从同步

mycat读写分离核心配置:

在schema.xml中配置:

balance="1"
  writeType="0" dbType="mysql" dbDriver="native" switchType="1"  slaveThreshold="100">
show slave status

<writeHost host="hostM1" url="47.100.153.11:3306" user="root"
   password="123456">

<readHost host="hostS2" url="localhost:3306" user="root" password="123456" />

至此即可开始测试。。。


你可能感兴趣的:(Mysql,Mycat)