3

we use MySQL 5.6 InnoDB engine for our database purpose. currently we have a single instance of it , but as our application is growing , we want to have our database in cluster mode. now what we have done till now :

We tried MySQL NDB cluster 7.3.1 (Lab version ): but we still face problems with foreign keys and it doesn't seems to be reliable.so we tried next option.

we tried mysql active/passive clustering with DRBD, pacemaker and corosync : everything works fine on two nodes.

now we want to do Mysql active-active clustering , even after a lot of google i am unble to find any information on it , can we do it with DRBD or there is some other way to do it.

please help !!!!!

Chetan Sharma
  • 173
  • 1
  • 3
  • 16
  • Mysql Replication may help you. – Omesh Aug 28 '13 at 06:48
  • Omesh, i want active/active clustering , may be i'll require a load-balancer but i don't know how to use that. and this replication is i think for active passive. – Chetan Sharma Aug 28 '13 at 06:52
  • @ChetanSharma Hi, did you found any solution for this? If yes, can please share it. I am also looking for the same. – Amogh Jul 30 '21 at 06:57

2 Answers2

4

Take a look at Galera Cluster for MySQL or (based on that) the Percona XtraDB Cluster.

http://codership.com/content/using-galera-cluster

http://www.percona.com/software/percona-xtradb-cluster

Both provide multi node active mysql server (only for innodb) with easy setup.

ralph
  • 41
  • 1
  • hi ralph , thanks for your answer.MySQL NDB CLuster 7.3.2 is now available and i am going with it, i'll also explore options provided by you – Chetan Sharma Oct 14 '13 at 10:54