MySQL Fabric is a great tool for managing a farm of MySQL
servers. In the last two posts you can see how High Availability Fail over and Sharding work. When things are working right,
the group lookup_servers will look something like
this:
server_uuid address status mode weight
------------------------------------ ----------- ---------
---------- ------
09d13be1-cdd0-11e4-8643-0800273b9c80 10.10.13.10 SECONDARY
READ_ONLY 1.0
0f611996-cdd0-11e4-8643-0800273b9c80 10.10.13.20 SECONDARY
READ_ONLY 1.0
11aae7e7-cdd0-11e4-8643-0800273b9c80 10.10.13.30 PRIMARY
READ_WRITE 1.0
This is a three node farm with a PRIMARY for READ-WRITE operations and two …
[Read more]