原 【DB宝40】MySQL高可用管理工具Orchestrator简介及测试
Tags: 原创MySQL高可用监控Orchestrator
一、Orchestrator简介
Orchestrator是一款开源,对MySQL复制提供高可用、拓扑的可视化管理工具,采用go语言编写,它能够主动发现当前拓扑结构和主从复制状态,支持MySQL主从复制拓扑关系的调整、支持MySQL主库故障自动切换(failover)、手动主从切换(switchover)等功能。
Orchestrator后台依赖于MySQL或者SQLite存储元数据,能够提供Web界面展示MySQL集群的拓扑关系及实例状态,通过Web界面可更改MySQL实例的部分配置信息,同时也提供命令行和api接口,以便更加灵活的自动化运维管理。Orchestrator 对MySQL主库的故障切换分为自动切换和手动切换。手动切换又分为recover、force-master-failover、force-master-takeover以及graceful-master-takeover。
相比于MHA,Orchestrator更加偏重于复制拓扑关系的管理,能够实现MySQL任一复制拓扑关系的调整,并在此基础上,实现MySQL高可用。另外,Orchestrator自身也可以部署多个节点,通过raft分布式一致性协议,保证自身的高可用。
Orchestrator主要有以下几个特征:
- 自动监测数据库复制的结构及其状态
- 提供了GUI,CLI,API等接口来检查复制拓扑的状态以及做一些调整的操作
- 支持自动的master failover,当复制结构的server挂掉以后(不管手动还是自动的),能够重新形成复制的拓扑结构
- 不依赖于特定的server版本或分支(MySQL, Percona Server, MariaDB or even MaxScale binlog servers)
- 支持多种类型的拓扑结构,不管是单个的主从还是成百上千个server组成的多级复制都不在话下
- 它的GUI不只是向你report拓扑状态,还可以在Orchestrator web页面通过拖拽或者删除节点来改变复制拓扑(CLI和API也能做)
Orchestrator的GitHub地址:
https://github.com/openark/orchestrator
https://github.com/outbrain/orchestrator/wiki/Orchestrator-Manual
https://github.com/github/orchestrator/tree/master/docs
Orchestrator的所有参数:
https://github.com/github/orchestrator/blob/master/go/config/config.go
官方建议的生产配置示例:
https://github.com/github/orchestrator/blob/master/docs/configuration-sample.md
二、快速搭建Orchestrator环境
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | -- 拉取小麦苗的镜像 docker pull registry.cn-hangzhou.aliyuncs.com/lhrbest/lhrorchestrator:1.0 -- 创建容器 docker run -d --name lhrorchestrator -h lhrorchestrator \ -p 233:22 -p 3087:3389 -p 3000:3000 \ --privileged=true lhrbest/lhrorchestrator:1.0 \ /usr/sbin/init -- 进入容器 docker exec -it lhrorchestrator bash -- 启动后端存储MySQL库 systemctl status mysqld MySQL用户名和密码:root/lhr -- 启动orchestrator systemctl start orchestrator systemctl status orchestrator -- web访问: http://192.168.66.35:3000 用户名和密码:lhr/lhr -- 日志: tailf /var/log/messages -- 参数文件 /usr/local/orchestrator/orchestrator.conf.json |
web界面如下所示: