In this post we will see the unique features of MySQL Cluster
i.e. Self healing and no single point of failure.
MySQL Cluster No Single Point Of Failure:
As we know that in MySQL Cluster, data nodes are logically
grouped into nodegroups. All data nodes in a nodegroup contain
the same data, kept in sync at all times. Different nodegroups
contain different data. So in a single nodegroup, MySQL Cluster
can sustain multiple node shutdown at the same time but at least
one node must live in that nodegroup. Lets demonstrate this
feature with a 4 replicas cluster where each nodegroup have 4
data nodes.
Lets create a MySQL Cluster with below environment.
- MySQL Cluster 8.0.22 version
- 2 Management servers
- 8 Data nodes servers
- 2 Mysqld servers
- 4 API nodes
- OS: Ubuntu 20.04 LTS
- NoOfReplicas = 4
…
[Read more]