MySQL Router轻量级 MySQL 中间件
MySQL Router 是轻量级 MySQL 中间件,提供应用与任意 MySQL 服务器后端的透明路由。MySQL Router 可以广泛应用在各种用例中,比如通过高效路由数据库流量提供高可用性和可伸缩的 MySQL 服务器后端。
连接到 Router 服务:
cnx = mysql.connector.connect(host='router.example.com', port=8500, user='scott', password='tiger') cur = cnx.cursor() cnx.execute("SELECT ...")
MySQL Router 最好和 MySQL Fabric 一起用,不过也不硬性要求。Router 最好和应用运行在同一台机器上。
在 Linux 下的安装请参考此文。
服务架构:
MySQL Router 在应用系统中的位置,也可以运行多个 router 实例:
评论