This is the third post in our MySQL Fabric series. If you missed the previous two, we started with an overall introduction, and then a discussion of MySQL Fabric’s high-availability (HA) features. MySQL Fabric was RC when we started this series, but it went GA recently. You can read the press release here, and see this blog post from Oracle’s Mats Kindahl for more details. In our previous post, we showed a simple HA setup managed with MySQL Fabric, including some basic failure scenarios. Today, we’ll present a similar scenario from an application developer’s point of view, using the Python Connector for the examples. If you’re following the examples on these posts, you’ll notice that the UUID for servers will be changing. That’s because we rebuild the environment between runs. Symbolic names stay the same though. That said, here’s our usual 3 node setup:

For our tests, we will be using this simple script:

This simple script requests a MODE_READWRITE connection and then issues selects in a loop. The reason it requests a RW connector is that it makes it easier for us to provoke a failure, as we have two SECONDARY nodes that could be used for queries if we requested a MODE_READONLY connection. The select includes a short sleep to make it easier to catch it in SHOW PROCESSLIST. In order to work, this script needs the test.test table to exist in the mycluster group. Running the following statements in the PRIMARY node will do it:

Dealing with failure

With everything set up, we can start the script and then cause a PRIMARY failure. In this case, we’ll simulate a failure by shutting down mysqld on it:

While this happens, here’s the output from the script:

The ‘sleeping 1 second and reconnecting’ line means the script got an exception while running a query (when the PRIMARY node was stopped, waited one second and then reconnected. The next lines confirm that everything went back to normal after the reconnection. The relevant piece of code that handles the reconnection is this:

If fcnx.reset_cache() is not invoked, then the driver won’t connect to the xml-rpc server again, but will use it’s local cache of the group’s status instead. As the PRIMARY node is offline, this will cause the reconnect attempt to fail. By reseting the cache, we’re forcing the driver to connect to the xml-rpc server and fetch up to date group status information. If more failures happen and there is no PRIMARY (or candidate for promotion) node in the group, the following error is received:

Running without MySQL Fabric

As we have discussed in previous posts, the XML-PRC server can become a single point of failure under certain circumstances. Specifically, there are at least two problem scenarios when this server is down:

  • When a node goes down
  • When new connection attempts are made

The first case is obvious enough. If MySQL Fabric is not running and a node fails, there won’t be any action, and clients will get an error whenever they send a query to the failed node. This is worse if the PRIMARY fails, as failover won’t happen and the cluster will be unavailable for writes. The second case means that while MySQL Fabric is not running, no new connections to the group can be established. This is because when connecting to a group, MySQL Fabric-aware clients first connect to the XML-RPC server to get a list of nodes and roles, and only then use their local cache for decisions. A way to mitigate this is to use connection pooling, which reduces the need for establishing new connections, and therefore minimises the chance of failure due to MySQL Fabric being down. This, of course, is assuming that something is monitoring MySQL Fabric ensuring some host provides the XML-PRC service. If that is not the case, failure will be delayed, but it will eventually happen anyway. Here is an example of what happens when MySQL Fabric is down and the PRIMARY node goes down:

This happens when a new connection attempt is made after resetting the local cache.

Making sure MySQL Fabric stays up

As of this writing, it is the user’s responsibility to make sure MySQL Fabric is up and running. This means you can use whatever you feel comfortable with in terms of HA, like Pacemaker. While it does add some complexity to the setup, the XML-RPC server is very simple to manage and so a simple resource manager should work. For the backend, MySQL Fabric is storage engine agnostic, so an easy way to resolve this could be to use a small MySQL Cluster set up to ensure the backend is available. MySQL’s team blogged about such a set up here. We think the ndb approach is probably the simplest for providing HA at the MySQL Fabric store level, but believe that MySQL Fabric itself should provide or make it easy to achieve HA at the XML-RPC server level. If ndb is used as store, this means any node can take a write, which in turns means multiple XML-PRC instances should be able to write to the store concurrently. This means that in theory, improving this could be as easy as allowing Fabric-aware drivers to get a list of Fabric servers instead of a single IP and port to connect to.

What’s next

In the past two posts, we’ve presented MySQL Fabric’s HA features, seen how it handles failures at the node level, how to use MySQL databases with a MySQL Fabric-aware driver, and what remains unresolved for now. In our next post, we’ll review MySQL Fabric’s Sharding features.

20 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
MWM

Dear Fernando,

Do we have switchover command in MySQL Fabric like we have in mysqlrpladmin utility.

Once our down server gets up and become part of the Group as Secondary then deliberately down the primary server is not a good option. We have the option of server-status to change the primary one to secondary and secondary to primary. What is the best approach to resolve this issue.

Regards
MWM

MWM

Thank you Fernando. Its the answer.

Few more questions coming into my mind regarding data replication and data integrity / data loss. Let me first experiment few scenarios then ill come back to blog soon. 🙂

Regards
MWM

Tim

How can I transfer my exisitng MySQL database to the HA group managed by MySQL Fabric?
Is it possible to use the mysqldump utility to dump database into MySQL Fabric?

Tim

Ipar Thank you for your timely reply.

What I am confused is that I think we need Fabric aware connectors to access the servers managed by Fabric. Therefore, I think the destination server for the mysqldump is the Fabric manage node and it will assign server to handle SQL commands according to my Fabric configuartion.

To be clear, the commands in my mind are:
1. mysqldump -u xxx -h existing_mysql_host src_database > dump.sql
2. mysql -u xxx -h mysql_fabric_manage_node_host < dump.sql
.

Are the commands above feasible?

Please feel free to correct me if I am wrong.

Tim

Ipar

Thank you very much. I got it.
I am looking forward to the recorded webinar : )

Tim

I set up an HA group with two MySQL server A and B and promote A as PRIMARY. Then, I shutdown the mysqld at the server A.

MySQL Fabric detects the server A is unreachable serveral times, and decides to promote B automatically.
[INFO] timestamp – Executor-0 – Master has changed from A to B.
The server B is now PRIMARY and in read_write mode. It can accept write commands (e.g. insert) successfully.

I wonder whether the server B has replicated all data from the server A before the server A is shut down.
Will there be any data loss during the procedure?
Are there any settings of MySQL Fabric to prevent this?

What commands should I issue when I start the mysqld at server A again to restore the original HA group configuration?
What I mean is:
1. Set server A as PRIMARY and in read_write mode again.
2. Set server B as SECONDARY and in read_only mode again.
Will the server A synchronize all data modification from server B when the server A is down?
Will there be any data loss during the HA configuration restore procedure?

Tim

Thank you a lot!
Let me give you a big hand!
I got the overall concept.

I highly anticipate your blog post about it. Besides, I would like to know how to solve the problem if “SECONDARY is not able to catch up completely” or something like replication errors if it happens.

Sergio

Hi Fernando,

I can’t understand very well how to config the connector for load balancing.
In the above example, I need to put the work mode READWRITE or READONLY for each SQL.
But, I can’t demand change all the code in my application.
Can I config the connector for automatic load balancing?
Is not simply change my actual string connection to the MySQL Server by MySQL Fabric?

Thanks in advance!

Regards!

Tim

Hi Fernando,

1.
I would like to connect to MySQL Fabric with PHP. Therefore, I attempted to check http://dev.mysql.com/doc/mysql-utilities/1.4/en/fabric.html in vain. There are only Connector/Python with MySQL Fabric and Java Connector/J with MySQL Fabric documents.

Is it possible to connect to MySQL Fabric with PHP?

2.
What is the equivalent API in Java to the “fcnx.reset_cache()” in Python? I check http://dev.mysql.com/doc/mysql-utilities/1.4/en/connector-j-fabric-reference-api.html but I have no idea which is the one I need.

Sergio

Hi Fernando!

No problem! Welcome back 🙂

Thanks a lot for your help.
I have disdained Fabric for load balancing because I think the same, Fabric is not ready for load balancing yet.

Regards!

mkman

setup is failing. plz help! all i was trying to do was provision and it failed. when i did a teardown, then ran a setup this happened.

[root@store ~]# mysqlfabric manage setup
[INFO] 1411890414.551449 – MainThread – Initializing persister: user (fabric), server (localhost:3306), database (fabric).
Traceback (most recent call last):
File “/usr/bin/mysqlfabric”, line 429, in
main()
File “/usr/bin/mysqlfabric”, line 410, in main
fire_command(cmd, *cargs)
File “/usr/bin/mysqlfabric”, line 339, in fire_command
result = command.dispatch(*(command.append_options_to_args(args)))
File “/usr/lib/python2.6/site-packages/mysql/fabric/services/manage.py”, line 170, in dispatch
_persistence.MySQLPersister())
File “/usr/lib/python2.6/site-packages/mysql/fabric/credentials.py”, line 502, in check_initial_setup
username = config.get(section, ‘user’)
File “/usr/lib64/python2.6/ConfigParser.py”, line 532, in get
raise NoSectionError(section)
ConfigParser.NoSectionError: No section: ‘protocol.mysql’

ho_oh

I have configured mysql fabric as you described. However, when running python code i get this error:
mysql.connector.errors.InterfaceError: Reported faulty server to Fabric (1045 (28000): Access denied for user ‘root’@’ip’ (using password: YES))

What did i miss?

Fernando Ipar

Hello ho_oh:

The error implies you’re attempting to connect to the nodes via fabric using the root account. For that to work, the ‘root’@’ip’ account must have the required privileges on the nodes.

I think you should be creating a dedicated account for clients to connect via fabric (actually, one per app, if this was production), and make sure that has the needed privileges on the data nodes. Using root (or another account, but granting it SUPER privilege) is usually not a good idea, but it’s specially not good in the context of using Fabric for HA, as Fabric uses the read_only flag to prevent writes to nodes in the Secondary role, and by using root, you could inadvertently work around that.