Table of Contents
Data is the currency of today's web, mobile, social, enterprise and cloud applications. Ensuring data is always available is a top priority for any organization. Minutes of downtime can result in significant loss of revenue and reputation.
There is no “one size fits all” approach to delivering High Availability (HA). Unique application attributes, business requirements, operational capabilities and legacy infrastructure can all influence HA technology selection. And technology is only one element in delivering HA: people and processes are just as critical as the technology itself.
MySQL is deployed into many applications demanding availability and scalability. Availability refers to the ability to cope with, and if necessary recover from, failures on the host, including failures of MySQL, the operating system, or the hardware and maintenance activity that may otherwise cause downtime. Scalability refers to the ability to spread both the database and the load of your application queries across multiple MySQL servers.
Because each application has different operational and availability requirements, MySQL offers a range of certified and supported solutions, delivering the appropriate levels of High Availability (HA) and scalability to meet service level requirements. Such solutions extend from replication, through virtualization and geographically redundant, multi-data center solutions delivering 99.999% uptime.
Selecting the right high availability solution for an application largely depends on:
The level of availability required.
The type of application being deployed.
Accepted best practices within your own environment.
The primary solutions supported by MySQL include:
MySQL Replication. Learn more: Chapter 17, Replication.
MySQL Cluster. Learn more: Chapter 18, MySQL NDB Cluster 7.3 and NDB Cluster 7.4.
Oracle MySQL Cloud Service. Learn more about MySQL Cloud Service.
Oracle Clusterware Agent for MySQL. Learn more about Oracle Clusterware.
MySQL with Solaris Cluster. Learn more about Solaris Cluster.
Further options are available using third-party solutions.
Each architecture used to achieve highly available database services is differentiated by the levels of uptime it offers. These architectures can be grouped into three main categories:
Data Replication.
Clustered & Virtualized Systems.
Shared-Nothing, Geographically-Replicated Clusters.
As illustrated in the following figure, each of these architectures offers progressively higher levels of uptime, which must be balanced against potentially greater levels of cost and complexity that each can incur. Simply deploying a high availability architecture is not a guarantee of actually delivering HA. In fact, a poorly implemented and maintained shared-nothing cluster could easily deliver lower levels of availability than a simple data replication solution.
The following table compares the HA and Scalability capabilities of the various MySQL solutions:
Table 16.1 Feature Comparison of MySQL HA Solutions
Requirement | MySQL Replication | MySQL Cluster |
---|---|---|
Availability | ||
Platform Support | All Supported by MySQL Server (https://www.mysql.com/support/supportedplatforms/database.html) | All Supported by MySQL Cluster (https://www.mysql.com/support/supportedplatforms/cluster.html) |
Automated IP Failover | No | Depends on Connector and Configuration |
Automated Database Failover | No | Yes |
Automatic Data Resynchronization | No | Yes |
Typical Failover Time | User / Script Dependent | 1 Second and Less |
Synchronous Replication | No, Asynchronous and Semisynchronous | Yes |
Shared Storage | No, Distributed | No, Distributed |
Geographic redundancy support | Yes | Yes, via MySQL Replication |
Update Schema On-Line | No | Yes |
Scalability | ||
Number of Nodes | One Master, Multiple Slaves | 255 |
Built-in Load Balancing | Reads, via MySQL Replication | Yes, Reads and Writes |
Supports Read-Intensive Workloads | Yes | Yes |
Supports Write-Intensive Workloads | Yes, via Application-Level Sharding | Yes, via Auto-Sharding |
Scale On-Line (add nodes, repartition, etc.) | No | Yes |