MySQL Fabric 1.5.2 is out. In this release, you will find fixes
for some bugs and, specially, new exciting features:
New interface using the MySQL Protocol
Now MySQL Fabric mimics to some extent a MySQL Server. This
will foster the MySQL Fabric adoption by other connectors as
they will not have to use a XML-RPC protocol.
import mysql.connector
cnx = mysql.connector.connect(host='localhost', port=32275, user='admin', password='adminpasswd')
cur = cnx.cursor()
cur.execute("CALL dump.servers(patterns=%)", multi=True)
print cur.column_names
for row in cur.fetchall():
print "Row", row
Provisioning command group
We have started to make MySQL Fabric Cloud Aware and exploit
the easiness to spawn new machines in a cloud environment.
There is a long road ahead and this is just the beginning.
$ mysqlfabric provider register my_provider user passwd \ …
[Read more]