Cluster
This blog entry describes how to install MySQL clusters on
Solaris.
MySQL cluster consist of 3 seperate types of nodes:
- SQL nodes
- Storage nodes
- Management nodes
The SQL nodes are the nodes that applications can connect to.
Internally SQL nodes connect to storage nodes to process
the queries and return the result set to the end client.
The storage nodes are controlled by management nodes. They do
most of the work in processing the queries.
Managment nodes manages the entire cluster. They start and stop
the data and SQL nodes and manage backups.
Lets start with the simplistic installation where all the nodes
of the cluster are on the same box. Of course this is not how you
would do a typical MySQL cluster installation...but this is just
to get a feel of what is involved in MySQL cluster …