As we know, Orchestrator is a MySQL high availability and replication management tool that aids in managing farms of MySQL servers. In this blog post, we discuss how to make the Orchestrator (which manages MySQL) itself fault-tolerant and highly available. When considering HA for the Orchestrator one of the popular choices will be using the Raft consensus. […]
Community journal
Follow the feed
The latest from the MySQL community
Ideas, releases, practical guides, and perspectives from the people building with MySQL.
Showing entries 1 to 2 of 2
« Previous |
Next »
Recently we have setup Orchestrator in High Availability mode using RAFT. We are
running a 3 node setup in which there used to be a leader and
rest 2 are Healthy raft member.
So To access orchestrator service we may only speak to the leader
node using /api/leader-check as HTTP health check for our
proxy. This url returns http 200 on leader …