In the following section, we answer questions that are frequently
asked about MySQL NDB Cluster and the
NDB
storage engine.
- A.10.1. Which versions of the MySQL software support NDB Cluster? Do I have to compile from source?
- A.10.2. What do “NDB” and “NDBCLUSTER” mean?
- A.10.3. What is the difference between using NDB Cluster versus using MySQL Replication?
- A.10.4. Do I need any special networking to run NDB Cluster? How do computers in a cluster communicate?
- A.10.5. How many computers do I need to run an NDB Cluster, and why?
- A.10.6. What do the different computers do in an NDB Cluster?
- A.10.7. When I run the SHOW command in the NDB Cluster management client, I see a line of output that looks like this:
- A.10.8. With which operating systems can I use NDB Cluster?
- A.10.9. What are the hardware requirements for running NDB Cluster?
- A.10.10. How much RAM do I need to use NDB Cluster? Is it possible to use disk memory at all?
- A.10.11. What file systems can I use with NDB Cluster? What about network file systems or network shares?
- A.10.12. Can I run NDB Cluster nodes inside virtual machines (such as those created by VMWare, VirtualBox, Parallels, or Xen)?
- A.10.13. I am trying to populate an NDB Cluster database. The loading process terminates prematurely and I get an error message like this one:
- A.10.14. NDB Cluster uses TCP/IP. Does this mean that I can run it over the Internet, with one or more nodes in remote locations?
- A.10.15. Do I have to learn a new programming or query language to use NDB Cluster?
- A.10.16. What programming languages and APIs are supported by NDB Cluster?
- A.10.17. Does NDB Cluster include any management tools?
- A.10.18. How do I find out what an error or warning message means when using NDB Cluster?
- A.10.19. Is NDB Cluster transaction-safe? What isolation levels are supported?
- A.10.20. What storage engines are supported by NDB Cluster?
- A.10.21. In the event of a catastrophic failure— for example, the whole city loses power and my UPS fails—would I lose all my data?
- A.10.22. Is it possible to use FULLTEXT indexes with NDB Cluster?
- A.10.23. Can I run multiple nodes on a single computer?
- A.10.24. Can I add data nodes to an NDB Cluster without restarting it?
- A.10.25. Are there any limitations that I should be aware of when using NDB Cluster?
- A.10.26. Does NDB Cluster support foreign keys?
- A.10.27. How do I import an existing MySQL database into an NDB Cluster?
- A.10.28. How do NDB Cluster nodes communicate with one another?
- A.10.29. What is an arbitrator?
- A.10.30. What data types are supported by NDB Cluster?
- A.10.31. How do I start and stop NDB Cluster?
- A.10.32. What happens to NDB Cluster data when the cluster is shut down?
- A.10.33. Is it a good idea to have more than one management node for an NDB Cluster?
- A.10.34. Can I mix different kinds of hardware and operating systems in one NDB Cluster?
- A.10.35. Can I run two data nodes on a single host? Two SQL nodes?
- A.10.36. Can I use host names with NDB Cluster?
- A.10.37. Does NDB Cluster support IPv6?
- A.10.38. How do I handle MySQL users in an NDB Cluster having multiple MySQL servers?
- A.10.39. How do I continue to send queries in the event that one of the SQL nodes fails?
- A.10.40. How do I back up and restore an NDB Cluster?
- A.10.41. What is an “angel process”?
A.10.1. | Which versions of the MySQL software support NDB Cluster? Do I have to compile from source? |
NDB Cluster is not supported in standard MySQL Server releases. Instead, MySQL NDB Cluster is provided as a separate product. Available NDB Cluster release series include the following:
You can obtain and compile NDB Cluster from source (see Section 25.3.1.4, “Building NDB Cluster from Source on Linux”, and Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows”), but for all but the most specialized cases, we recommend using one of the following installers provided by Oracle that is appropriate to your operating platform and circumstances:
Installation packages may also be available from your platform's package management system.
You can determine whether your MySQL Server has
| |
A.10.2. | What do “NDB” and “NDBCLUSTER” mean? |
“NDB” stands for
“Network
Database”.
| |
A.10.3. | What is the difference between using NDB Cluster versus using MySQL Replication? |
In traditional MySQL replication, a source MySQL server updates
one or more replicas. Transactions are committed sequentially,
and a slow transaction can cause the replica to lag behind the
source. This means that if the source fails, it is possible that
the replica might not have recorded the last few transactions.
If a transaction-safe engine such as
In short, whereas standard MySQL replication is asynchronous, NDB Cluster is synchronous. Asynchronous replication is also available in NDB Cluster. NDB Cluster Replication (also sometimes known as “geo-replication”) includes the capability to replicate both between two NDB Clusters, and from an NDB Cluster to a non-Cluster MySQL server. See Section 25.7, “NDB Cluster Replication”. | |
A.10.4. | Do I need any special networking to run NDB Cluster? How do computers in a cluster communicate? |
NDB Cluster is intended to be used in a high-bandwidth environment, with computers connecting using TCP/IP. Its performance depends directly upon the connection speed between the cluster's computers. The minimum connectivity requirements for NDB Cluster include a typical 100-megabit Ethernet network or the equivalent. We recommend you use gigabit Ethernet whenever available. | |
A.10.5. | How many computers do I need to run an NDB Cluster, and why? |
A minimum of three computers is required to run a viable cluster. However, the minimum recommended number of computers in an NDB Cluster is four: one each to run the management and SQL nodes, and two computers to serve as data nodes. The purpose of the two data nodes is to provide redundancy; the management node must run on a separate machine to guarantee continued arbitration services in the event that one of the data nodes fails. To provide increased throughput and high availability, you should use multiple SQL nodes (MySQL Servers connected to the cluster). It is also possible (although not strictly necessary) to run multiple management servers. | |
A.10.6. | What do the different computers do in an NDB Cluster? |
An NDB Cluster has both a physical and logical organization, with computers being the physical elements. The logical or functional elements of a cluster are referred to as nodes, and a computer housing a cluster node is sometimes referred to as a cluster host. There are three types of nodes, each corresponding to a specific role within the cluster. These are:
| |
A.10.7. |
When I run the
What does the |
The simplest answer is, “It's not something you can control, and it's nothing that you need to worry about in any case, unless you're a software engineer writing or analyzing the NDB Cluster source code”. If you don't find that answer satisfactory, here's a longer and more technical version: A number of mechanisms in NDB Cluster require distributed coordination among the data nodes. These distributed algorithms and protocols include global checkpointing, DDL (schema) changes, and node restart handling. To make this coordination simpler, the data nodes “elect” one of their number to act as leader. There is no user-facing mechanism for influencing this selection, which is completely automatic; the fact that it is automatic is a key part of NDB Cluster's internal architecture. When a node acts as the “leader” for any of these mechanisms, it is usually the point of coordination for the activity, and the other nodes act as “followers”, carrying out their parts of the activity as directed by the leader. If the node acting as leader fails, then the remaining nodes elect a new leader. Tasks in progress that were being coordinated by the old leader may either fail or be continued by the new leader, depending on the actual mechanism involved.
It is possible for some of these different mechanisms and
protocols to have different leader nodes, but in general the
same leader is chosen for all of them. The node indicated as the
leader in the output of NDB Cluster is designed in such a way that the choice of leader has no discernible effect outside the cluster itself. For example, the current leader does not have significantly higher CPU or resource usage than the other data nodes, and failure of the leader should not have a significantly different impact on the cluster than the failure of any other data node. | |
A.10.8. | With which operating systems can I use NDB Cluster? |
NDB Cluster is supported on most Unix-like operating systems. NDB Cluster is also supported in production settings on Microsoft Windows operating systems. For more detailed information concerning the level of support which is offered for NDB Cluster on various operating system versions, operating system distributions, and hardware platforms, please refer to https://www.mysql.com/support/supportedplatforms/cluster.html. | |
A.10.9. | What are the hardware requirements for running NDB Cluster? |
NDB Cluster should run on any platform for which
| |
A.10.10. | How much RAM do I need to use NDB Cluster? Is it possible to use disk memory at all? |
NDB Cluster was originally implemented as in-memory only, but all versions currently available also provide the ability to store NDB Cluster on disk. See Section 25.6.11, “NDB Cluster Disk Data Tables”, for more information.
For in-memory
To calculate the memory requirements more exactly requires determining, for each table in the cluster database, the storage space required per row (see Section 13.7, “Data Type Storage Requirements”, for details), and multiplying this by the number of rows. You must also remember to account for any column indexes as follows:
Creating NDB Cluster tables with
When calculating Cluster memory requirements, you may find
useful the ndb_size.pl utility which is
available in recent MySQL 9.1 releases. This Perl
script connects to a current (non-Cluster) MySQL database and
creates a report on how much space that database would require
if it used the
It is especially important to keep in mind that every
NDB Cluster table must have a primary key. The
You can determine how much memory is being used for storage of
NDB Cluster data and indexes at any given time using the
| |
A.10.11. | What file systems can I use with NDB Cluster? What about network file systems or network shares? |
Generally, any file system that is native to the host operating system should work well with NDB Cluster. If you find that a given file system works particularly well (or not so especially well) with NDB Cluster, we invite you to discuss your findings in the NDB Cluster Forums.
For Windows, we recommend that you use NDB Cluster is implemented as a shared-nothing solution; the idea behind this is that the failure of a single piece of hardware should not cause the failure of multiple cluster nodes, or possibly even the failure of the cluster as a whole. For this reason, the use of network shares or network file systems is not supported for NDB Cluster. This also applies to shared storage devices such as SANs. | |
A.10.12. | Can I run NDB Cluster nodes inside virtual machines (such as those created by VMWare, VirtualBox, Parallels, or Xen)? |
NDB Cluster is supported for use in virtual machines. We currently support and test using Oracle VM. Some NDB Cluster users have successfully deployed NDB Cluster using other virtualization products; in such cases, Oracle can provide NDB Cluster support, but issues specific to the virtual environment must be referred to that product's vendor. | |
A.10.13. | I am trying to populate an NDB Cluster database. The loading process terminates prematurely and I get an error message like this one:
Why is this happening? |
The cause is very likely to be that your setup does not provide
sufficient RAM for all table data and all indexes,
including the primary key required by the
It is also worth noting that all data nodes should have the same amount of RAM, since no data node in a cluster can use more memory than the least amount available to any individual data node. For example, if there are four computers hosting Cluster data nodes, and three of these have 3GB of RAM available to store Cluster data while the remaining data node has only 1GB RAM, then each data node can devote at most 1GB to NDB Cluster data and indexes.
In some cases it is possible to get Table is
full errors in MySQL client applications even when
ndb_mgm -e "ALL REPORT MEMORYUSAGE" shows
significant free
For similar reasons, you can also sometimes encounter problems
with data node restarts on nodes that are heavily loaded with
data. The | |
A.10.14. | NDB Cluster uses TCP/IP. Does this mean that I can run it over the Internet, with one or more nodes in remote locations? |
It is very unlikely that a cluster would perform reliably under such conditions, as NDB Cluster was designed and implemented with the assumption that it would be run under conditions guaranteeing dedicated high-speed connectivity such as that found in a LAN setting using 100 Mbps or gigabit Ethernet—preferably the latter. We neither test nor warrant its performance using anything slower than this. Also, it is extremely important to keep in mind that communications between the nodes in an NDB Cluster are not secure; they are neither encrypted nor safeguarded by any other protective mechanism. The most secure configuration for a cluster is in a private network behind a firewall, with no direct access to any Cluster data or management nodes from outside. (For SQL nodes, you should take the same precautions as you would with any other instance of the MySQL server.) For more information, see Section 25.6.21, “NDB Cluster Security Issues”. | |
A.10.15. | Do I have to learn a new programming or query language to use NDB Cluster? |
No. Although some specialized commands are used to manage and configure the cluster itself, only standard (My)SQL statements are required for the following operations:
Some specialized configuration parameters and files are required to set up an NDB Cluster—see Section 25.4.3, “NDB Cluster Configuration Files”, for information about these. A few simple commands are used in the NDB Cluster management client (ndb_mgm) for tasks such as starting and stopping cluster nodes. See Section 25.6.1, “Commands in the NDB Cluster Management Client”. | |
A.10.16. | What programming languages and APIs are supported by NDB Cluster? |
NDB Cluster supports the same programming APIs and languages as the standard MySQL Server, including ODBC, .Net, the MySQL C API, and numerous drivers for popular scripting languages such as PHP, Perl, and Python. NDB Cluster applications written using these APIs behave similarly to other MySQL applications; they transmit SQL statements to a MySQL Server (in the case of NDB Cluster, an SQL node), and receive responses containing rows of data. For more information about these APIs, see Chapter 31, Connectors and APIs.
NDB Cluster also supports application programming using the NDB
API, which provides a low-level C++ interface to NDB Cluster
data without needing to go through a MySQL Server. See
The NDB API. In addition, many
NDB Cluster also supports Java application programming using ClusterJ, which supports a domain object model of data using sessions and transactions. See Java and NDB Cluster, for more information.
NDB Cluster 8.0 also includes adapters supporting NoSQL
applications written against | |
A.10.17. | Does NDB Cluster include any management tools? |
NDB Cluster includes a command line client for performing basic management functions. See Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client”, and Section 25.6.1, “Commands in the NDB Cluster Management Client”. NDB Cluster is also supported by MySQL Cluster Manager, a separate product providing an advanced command line interface that can automate many NDB Cluster management tasks such as rolling restarts and configuration changes. For more information about MySQL Cluster Manager, see MySQL Cluster Manager 9.0.1 User Manual. | |
A.10.18. | How do I find out what an error or warning message means when using NDB Cluster? |
There are two ways in which this can be done:
| |
A.10.19. | Is NDB Cluster transaction-safe? What isolation levels are supported? |
Yes. For tables created with the
| |
A.10.20. | What storage engines are supported by NDB Cluster? |
NDB Cluster requires the
It is possible to create tables using other storage engines
(such as
NDB Cluster is quite different from
| |
A.10.21. | In the event of a catastrophic failure— for example, the whole city loses power and my UPS fails—would I lose all my data? |
All committed transactions are logged. Therefore, although it is possible that some data could be lost in the event of a catastrophe, this should be quite limited. Data loss can be further reduced by minimizing the number of operations per transaction. (It is not a good idea to perform large numbers of operations per transaction in any case.) | |
A.10.22. |
Is it possible to use |
| |
A.10.23. | Can I run multiple nodes on a single computer? |
It is possible but not always advisable. One of the chief reasons to run a cluster is to provide redundancy. To obtain the full benefits of this redundancy, each node should reside on a separate machine. If you place multiple nodes on a single machine and that machine fails, you lose all of those nodes. For this reason, if you do run multiple data nodes on a single machine, it is extremely important that they be set up in such a way that the failure of this machine does not cause the loss of all the data nodes in a given node group. Given that NDB Cluster can be run on commodity hardware loaded with a low-cost (or even no-cost) operating system, the expense of an extra machine or two is well worth it to safeguard mission-critical data. It also worth noting that the requirements for a cluster host running a management node are minimal. This task can be accomplished with a 300 MHz Pentium or equivalent CPU and sufficient RAM for the operating system, plus a small amount of overhead for the ndb_mgmd and ndb_mgm processes. It is acceptable to run multiple cluster data nodes on a single host that has multiple CPUs, cores, or both. The NDB Cluster distribution also provides a multithreaded version of the data node binary intended for use on such systems. For more information, see Section 25.5.3, “ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)”. It is also possible in some cases to run data nodes and SQL nodes concurrently on the same machine; how well such an arrangement performs is dependent on a number of factors such as number of cores and CPUs as well as the amount of disk and memory available to the data node and SQL node processes, and you must take these factors into account when planning such a configuration. | |
A.10.24. | Can I add data nodes to an NDB Cluster without restarting it? |
It is possible to add new data nodes to a running NDB Cluster without taking the cluster offline. For more information, see Section 25.6.7, “Adding NDB Cluster Data Nodes Online”. For other types of NDB Cluster nodes, a rolling restart is all that is required (see Section 25.6.5, “Performing a Rolling Restart of an NDB Cluster”). | |
A.10.25. | Are there any limitations that I should be aware of when using NDB Cluster? |
Limitations on
For a complete listing of limitations in NDB Cluster, see Section 25.2.7, “Known Limitations of NDB Cluster”. See also Section 25.2.7.11, “Previous NDB Cluster Issues Resolved in NDB Cluster 9.1”. | |
A.10.26. | Does NDB Cluster support foreign keys? |
NDB Cluster provides support for foreign key constraints which
is comparable to that found in the
| |
A.10.27. | How do I import an existing MySQL database into an NDB Cluster? |
You can import databases into NDB Cluster much as you would with
any other version of MySQL. Other than the limitations mentioned
elsewhere in this FAQ, the only other special requirement is
that any tables to be included in the cluster must use the
It is also possible to convert existing tables that use other
storage engines to | |
A.10.28. | How do NDB Cluster nodes communicate with one another? |
Cluster nodes can communicate through any of three different transport mechanisms: TCP/IP, SHM (shared memory), and SCI (Scalable Coherent Interface). Where available, SHM is used by default between nodes residing on the same cluster host; however, this is considered experimental. SCI is a high-speed (1 gigabit per second and higher), high-availability protocol used in building scalable multi-processor systems; it requires special hardware and drivers. See Section 25.4.4, “Using High-Speed Interconnects with NDB Cluster”, for more about using SCI as a transport mechanism for NDB Cluster. | |
A.10.29. | What is an arbitrator? |
If one or more data nodes in a cluster fail, it is possible that not all cluster data nodes are able to “see” one another. In fact, it is possible that two sets of data nodes might become isolated from one another in a network partitioning, also known as a “split-brain” scenario. This type of situation is undesirable because each set of data nodes tries to behave as though it is the entire cluster. An arbitrator is required to decide between the competing sets of data nodes.
When all data nodes in at least one node group are alive,
network partitioning is not an issue, because no single subset
of the cluster can form a functional cluster on its own. The
real problem arises when no single node group has all its nodes
alive, in which case network partitioning (the
“split-brain” scenario) becomes possible. Then an
arbitrator is required. All cluster nodes recognize the same
node as the arbitrator, which is normally the management server;
however, it is possible to configure any of the MySQL Servers in
the cluster to act as the arbitrator instead. The arbitrator
accepts the first set of cluster nodes to contact it, and tells
the remaining set to shut down. Arbitrator selection is
controlled by the The role of arbitrator does not in and of itself impose any heavy demands upon the host so designated, and thus the arbitrator host does not need to be particularly fast or to have extra memory especially for this purpose. | |
A.10.30. | What data types are supported by NDB Cluster? |
NDB Cluster supports all of the usual MySQL data types,
including those associated with MySQL's spatial extensions;
however, the
Note
NDB Cluster Disk Data tables (that is, tables created with
See Section 25.2.7, “Known Limitations of NDB Cluster”, for more information about these issues. | |
A.10.31. | How do I start and stop NDB Cluster? |
It is necessary to start each node in the cluster separately, in the following order:
Each of these commands must be run from a system shell on the
machine housing the affected node. (You do not have to be
physically present at the machine—a remote login shell can
be used for this purpose.) You can verify that the cluster is
running by starting the
To shut down a running cluster, issue the command
(The quotation marks in this example are optional, since there
are no spaces in the command string following the
Either of these commands causes the ndb_mgm, ndb_mgm, and any ndbd processes to terminate gracefully. MySQL servers running as SQL nodes can be stopped using mysqladmin shutdown. For more information, see Section 25.6.1, “Commands in the NDB Cluster Management Client”, and Section 25.3.6, “Safe Shutdown and Restart of NDB Cluster”. MySQL Cluster Manager provides additional ways to handle starting ansd stopping of NDB Cluster nodes. See MySQL Cluster Manager 9.0.1 User Manual, for more information about this tool. | |
A.10.32. | What happens to NDB Cluster data when the cluster is shut down? |
The data that was held in memory by the cluster's data nodes is written to disk, and is reloaded into memory the next time that the cluster is started. | |
A.10.33. | Is it a good idea to have more than one management node for an NDB Cluster? |
It can be helpful as a fail-safe. Only one management node controls the cluster at any given time, but it is possible to configure one management node as primary, and one or more additional management nodes to take over in the event that the primary management node fails. See Section 25.4.3, “NDB Cluster Configuration Files”, for information on how to configure NDB Cluster management nodes. | |
A.10.34. | Can I mix different kinds of hardware and operating systems in one NDB Cluster? |
Yes, as long as all machines and operating systems have the same “endianness” (all big-endian or all little-endian). It is also possible to use software from different NDB Cluster releases on different nodes. However, we support such use only as part of a rolling upgrade procedure (see Section 25.6.5, “Performing a Rolling Restart of an NDB Cluster”). | |
A.10.35. | Can I run two data nodes on a single host? Two SQL nodes? |
Yes, it is possible to do this. In the case of multiple data nodes, it is advisable (but not required) for each node to use a different data directory. If you want to run multiple SQL nodes on one machine, each instance of mysqld must use a different TCP/IP port. Running data nodes and SQL nodes together on the same host is possible, but you should be aware that the ndbd or ndbmtd processes may compete for memory with mysqld. | |
A.10.36. | Can I use host names with NDB Cluster? |
Yes, it is possible to use DNS and DHCP for cluster hosts. However, if your application requires “five nines” availability, you should use fixed (numeric) IP addresses, since making communication between Cluster hosts dependent on services such as DNS and DHCP introduces additional potential points of failure. | |
A.10.37. | Does NDB Cluster support IPv6? |
IPv6 is supported for connections between SQL nodes (MySQL servers), but connections between all other types of NDB Cluster nodes must use IPv4. In practical terms, this means that you can use IPv6 for replication between NDB Clusters, but connections between nodes in the same NDB Cluster must use IPv4. For more information, see Section 25.7.3, “Known Issues in NDB Cluster Replication”. | |
A.10.38. | How do I handle MySQL users in an NDB Cluster having multiple MySQL servers? |
MySQL user accounts and privileges are normally not
automatically propagated between different MySQL servers
accessing the same NDB Cluster. MySQL NDB Cluster provides
support for shared and synchronized users and privileges using
the | |
A.10.39. | How do I continue to send queries in the event that one of the SQL nodes fails? |
MySQL NDB Cluster does not provide any sort of automatic failover between SQL nodes. Your application must be prepared to handle the loss of SQL nodes and to fail over between them. | |
A.10.40. | How do I back up and restore an NDB Cluster? |
You can use the NDB Cluster native backup and restore functionality in the NDB management client and the ndb_restore program. See Section 25.6.8, “Online Backup of NDB Cluster”, and Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup”. You can also use the traditional functionality provided for this purpose in mysqldump and the MySQL server. See Section 6.5.4, “mysqldump — A Database Backup Program”, for more information. | |
A.10.41. | What is an “angel process”? |
This process monitors and, if necessary, attempts to restart the data node process. If you check the list of active processes on your system after starting ndbd, you can see that there are actually 2 processes running by that name, as shown here (we omit the output from ndb_mgmd and ndbd for brevity):
The ndbd process showing
|