Major changes and new features in NDB Cluster 7.5 which are likely to be of interest are shown in the following list:
ndbinfo Enhancements. A number of changes are made in the
ndbinfodatabase, chief of which is that it now provides detailed information about NDB Cluster node configuration parameters.The
config_paramstable has been made read-only, and has been enhanced with additional columns providing information about each configuration parameter, including the parameter's type, default value, maximum and minimum values (where applicable), a brief description of the parameter, and whether the parameter is required. This table also provides each parameter with a uniqueparam_number.A row in the
config_valuestable shows the current value of a given parameter on the node having a specified ID. The parameter is identified by the value of theconfig_paramcolumn, which maps to theconfig_paramstable'sparam_number.Using this relationship you can write a join on these two tables to obtain the default, maximum, minimum, and current values for one or more NDB Cluster configuration parameters by name. An example SQL statement using such a join is shown here:
SELECT p.param_name AS Name, v.node_id AS Node, p.param_type AS Type, p.param_default AS 'Default', p.param_min AS Minimum, p.param_max AS Maximum, CASE p.param_mandatory WHEN 1 THEN 'Y' ELSE 'N' END AS 'Required', v.config_value AS Current FROM config_params p JOIN config_values v ON p.param_number = v.config_param WHERE p. param_name IN ('NodeId', 'HostName','DataMemory', 'IndexMemory');For more information about these changes, see Section 21.6.15.8, “The ndbinfo config_params Table”. See Section 21.6.15.9, “The ndbinfo config_values Table”, for further information and examples.
In addition, the
ndbinfodatabase no longer depends on theMyISAMstorage engine. Allndbinfotables and views now useNDB(shown asNDBINFO).Several new
ndbinfotables were introduced in NDB 7.5.4. These tables are listed here, with brief descriptions:dict_obj_infoprovides the names and types of database objects inNDB, as well as information about parent obejcts where applicabletable_distribution_statusprovidesNDBtable distribution status informationtable_fragmentsprovides information about the distribution ofNDBtable fragmentstable_infoprovides information about logging, checkpointing, storage, and other options in force for eachNDBtabletable_replicasprovides information about fragment replicas
See the descriptions of the individual tables for more information.
Default row and column format changes. Starting with NDB 7.5.1, the default value for both the
ROW_FORMAToption and theCOLUMN_FORMAToption forCREATE TABLEcan be set toDYNAMICrather thanFIXED, using a new MySQL server variablendb_default_column_formatis added as part of this change; set this toFIXEDorDYNAMIC(or start mysqld with the equivalent option--ndb-default-column-format=FIXED) to force this value to be used forCOLUMN_FORMATandROW_FORMAT. Prior to NDB 7.5.4, the default for this variable wasDYNAMIC; in this and later versions, the default isFIXED, which provides backwards compatibility with prior releases (Bug #24487363).The row format and column format used by existing table columns are unaffected by this change. New columns added to such tables use the new defaults for these (possibly overridden by
ndb_default_column_format), and existing columns are changed to use these as well, provided that theALTER TABLEstatement performing this operation specifiesALGORITHM=COPY.NoteA copying
ALTER TABLEcannot be done implicitly if mysqld is run with--ndb-allow-copying-alter-table=FALSE.ndb_binlog_index no longer dependent on MyISAM. As of NDB 7.5.2, the
ndb_binlog_indextable employed in NDB Cluster Replication now uses theInnoDBstorage engine instead ofMyISAM. When upgrading, you can run mysql_upgrade with--force--upgrade-system-tablesto cause it to executeALTER TABLE ... ENGINE=INNODBon this table. Use ofMyISAMfor this table remains supported for backward compatibility.A benefit of this change is that it makes it possible to depend on transactional behavior and lock-free reads for this table, which can help alleviate concurrency issues during purge operations and log rotation, and improve the availability of this table.
ALTER TABLE changes. NDB Cluster formerly supported an alternative syntax for online
ALTER TABLE. This is no longer supported in NDB Cluster 7.5, which makes exclusive use ofALGORITHM = DEFAULT|COPY|INPLACEfor table DDL, as in the standard MySQL Server.Another change affecting the use of this statement is that
ALTER TABLE ... ALGORITHM=INPLACE RENAMEmay now contain DDL operations in addition to the renaming.ExecuteOnComputer parameter deprecated. The
ExecuteOnComputerconfiguration parameter for management nodes, data nodes, and API nodes has been deprecated and is now subject to removal in a future release of NDB Cluster. You should use the equivalentHostNameparameter for all three types of nodes.records-per-key optimization. The NDB handler now uses the records-per-key interface for index statistics implemented for the optimizer in MySQL 5.7.5. Some of the benefits from this change include those listed here:
The optimizer now chooses better execution plans in many cases where a less optimal join index or table join order would previously have been chosen
Row estimates shown by
EXPLAINare more accurateCardinality estimates shown by
SHOW INDEXare improved
Connection pool node IDs. NDB 7.5.0 adds the mysqld
--ndb-cluster-connection-pool-nodeidsoption, which allows a set of node IDs to be set for the connection pool. This setting overrides--ndb-nodeid, which means that it also overrides both the--ndb-connectstringoption and theNDB_CONNECTSTRINGenvironment variable.NoteYou can set the size for the connection pool using the
--ndb-cluster-connection-pooloption for mysqld.create_old_temporals removed. The
create_old_temporalssystem variable was deprecated in NDB Cluster 7.4, and has now been removed.ndb_mgm Client PROMPT command. NDB Cluster 7.5 adds a new command for setting the client's command-line prompt. The following example illustrates the use of the
PROMPTcommand:ndb_mgm> PROMPT mgm#1: mgm#1: SHOW Cluster Configuration --------------------- [ndbd(NDB)] 4 node(s) id=5 @10.100.1.1 (mysql-5.7.44-ndb-7.5.36, Nodegroup: 0, *) id=6 @10.100.1.3 (mysql-5.7.44-ndb-7.5.36, Nodegroup: 0) id=7 @10.100.1.9 (mysql-5.7.44-ndb-7.5.36, Nodegroup: 1) id=8 @10.100.1.11 (mysql-5.7.44-ndb-7.5.36, Nodegroup: 1) [ndb_mgmd(MGM)] 1 node(s) id=50 @10.100.1.8 (mysql-5.7.44-ndb-7.5.36) [mysqld(API)] 2 node(s) id=100 @10.100.1.8 (5.7.44-ndb-7.5.36) id=101 @10.100.1.10 (5.7.44-ndb-7.5.36) mgm#1: PROMPT ndb_mgm> EXIT jon@valhaj:/usr/local/mysql/bin>For additional information and examples, see Section 21.6.1, “Commands in the NDB Cluster Management Client”.
Increased FIXED column storage per fragment. NDB Cluster 7.5 and later supports a maximum of 128 TB per fragment of data in
FIXEDcolumns. In NDB Cluster 7.4 and earlier, this was 16 GB per fragment.Deprecated parameters removed. The following NDB Cluster data node configuration parameters were deprecated in previous releases of NDB Cluster, and were removed in NDB 7.5.0:
Id: deprecated in NDB 7.1.9; replaced byNodeId.NoOfDiskPagesToDiskDuringRestartTUP,NoOfDiskPagesToDiskDuringRestartACC: both deprecated, had no effect; replaced in MySQL 5.1.6 byDiskCheckpointSpeedInRestart, which itself was later deprecated (in NDB 7.4.1) and is now also removed.NoOfDiskPagesToDiskAfterRestartACC,NoOfDiskPagesToDiskAfterRestartTUP: both deprecated, and had no effect; replaced in MySQL 5.1.6 byDiskCheckpointSpeed, which itself was later deprecated (in NDB 7.4.1) and is now also removed.ReservedSendBufferMemory: Deprecated; no longer had any effect.MaxNoOfIndexes: archaic (pre-MySQL 4.1), had no effect; long since replaced byMaxNoOfOrderedIndexesorMaxNoOfUniqueHashIndexes.Discless: archaic (pre-MySQL 4.1) synonym for and long since replaced byDiskless.
The archaic and unused (and for this reason also previously undocumented)
ByteOrdercomputer configuration parameter was also removed in NDB 7.5.0.The parameters just described are not supported in NDB 7.5. Attempting to use any of these parameters in an NDB Cluster configuration file now results in an error.
DBTC scan enhancements. Scans have been improved by reducing the number of signals used for communication between the
DBTCandDBDIHkernel blocks inNDB, enabling higher scalability of data nodes when used for scan operations by decreasing the use of CPU resources for scan operations, in some cases by an estimated five percent.Also as result of these changes response times should be greatly improved, which could help prevent issues with overload of the main threads. In addition, scans made in the
BACKUPkernel block have also been improved and made more efficient than in previous releases.JSON column support. NDB 7.5.2 and later supports the
JSONcolumn type forNDBtables and the JSON functions found in the MySQL Server, subject to the limitation that anNDBtable can have at most 3JSONcolumns.Read from any fragment replica; specify number of hashmap partition fragments. Previously, all reads were directed towards the primary fragment replica except for simple reads. (A simple read is a read that locks the row while reading it.) Beginning with NDB 7.5.2, it is possible to enable reads from any fragment replica. This is disabled by default but can be enabled for a given SQL node using the
ndb_read_backupsystem variable added in this release.Previously, it was possible to define tables with only one type of partition mapping, with one primary partition on each LDM in each node, but in NDB 7.5.2 it becomes possible to be more flexible about the assignment of partitions by setting a partition balance (fragment count type). Possible balance schemes are one per node, one per node group, one per LDM per node, and one per LDM per node group.
This setting can be controlled for individual tables by means of a
PARTITION_BALANCEoption (renamed fromFRAGMENT_COUNT_TYPEin NDB 7.5.4) embedded inNDB_TABLEcomments inCREATE TABLEorALTER TABLEstatements. Settings for table-levelREAD_BACKUPare also supported using this syntax. For more information and examples, see Section 13.1.18.9, “Setting NDB Comment Options”.In NDB API applications, a table's partition balance can also be get and set using methods supplied for this purpose; see Table::getPartitionBalance(), and Table::setPartitionBalance(), as well as Object::PartitionBalance, for more information about these.
As part of this work, NDB 7.5.2 also introduces the
ndb_data_node_neighboursystem variable. This is intended for use, in transaction hinting, to provide a “nearby” data node to this SQL node.In addition, when restoring table schemas, ndb_restore
--restore-metanow uses the target cluster's default partitioning, rather than using the same number of partitions as the original cluster from which the backup was taken. See Section 21.5.24.2.2, “Restoring to More Nodes Than the Original”, for more information and an example.NDB 7.5.3 adds a further enhancement to
READ_BACKUP: In this and later versions, it is possible to setREAD_BACKUPfor a given table online as part ofALTER TABLE ... ALGORITHM=INPLACE ....ThreadConfig improvements. A number of enhancements and feature additions are implemented in NDB 7.5.2 for the
ThreadConfigmultithreaded data node (ndbmtd) configuration parameter, including support for an increased number of platforms. These changes are described in the next few paragraphs.Non-exclusive CPU locking is now supported on FreeBSD and Windows, using
cpubindandcpuset. Exclusive CPU locking is now supported on Solaris (only) using thecpubind_exclusiveandcpuset_exclusiveparameters which are introduced in this release.Thread prioritzation is now available, controlled by the new
thread_prioparameter.thread_priois supported on Linux, FreeBSD, Windows, and Solaris, and varies somewhat by platform. For more information, see the description ofThreadConfig.The
realtimeparameter is now supported on Windows platforms.Partitions larger than 16 GB. Due to an improvement in the hash index implementation used by NDB Cluster data nodes, partitions of
NDBtables may now contain more than 16 GB of data for fixed columns, and the maximum partition size for fixed columns is now raised to 128 TB. The previous limitation was due to the fact that theDBACCblock in theNDBkernel used only 32-bit references to the fixed-size part of a row in theDBTUPblock, although 45-bit references to this data are used inDBTUPitself and elsewhere in the kernel outsideDBACC; all such references in to the data handled in theDBACCblock now use 45 bits instead.Print SQL statements from ndb_restore. NDB 7.5.4 adds the
--print-sql-logoption for the ndb_restore utility provided with the NDB Cluster distribution. This option enables SQL logging tostdout. Important: Every table to be restored using this option must have an explicitly defined primary key.See Section 21.5.24, “ndb_restore — Restore an NDB Cluster Backup”, for more information.
Organization of RPM packages. Beginning with NDB 7.5.4, the naming and organization of RPM packages provided for NDB Cluster align more closely with those released for the MySQL server. The names of all NDB Cluster RPMs are now prefixed with
mysql-cluster. Data nodes are now installed using thedata-nodepackage; management nodes are now installed from themanagement-serverpackage; and SQL nodes require theserverandcommonpackages. MySQL andNDBclient programs, including the mysql client and the ndb_mgm management client, are now included in theclientRPM.For a detailed listing of NDB Cluster RPMs and other information, see Section 21.3.1.2, “Installing NDB Cluster from RPM”.
ndbinfo processes and config_nodes tables. NDB 7.5.7 adds two tables to the
ndbinfoinformation database to provide information about cluster nodes; these tables are listed here:config_nodes: This table provides the node ID, process type, and host name for each node listed in an NDB cluster's configuration file.The
processesshows information about nodes currently connected to the cluster; this information includes the process name and system process ID; for each data node and SQL node, it also shows the process ID of the node's angel process. In addition, the table shows a service address for each connected node; this address can be set in NDB API applications using theNdb_cluster_connection::set_service_uri()method, which is also added in NDB 7.5.7.
System name. The system name of an NDB cluster can be used to identify a specific cluster. Beginning with NDB 7.5.7, the MySQL Server shows this name as the value of the
Ndb_system_namestatus variable; NDB API applications can use theNdb_cluster_connection::get_system_name()method which is added in the same release.A system name based on the time the management server was started is generated automatically; you can override this value by adding a
[system]section to the cluster's configuration file and setting theNameparameter to a value of your choice in this section, prior to starting the management server.ndb_restore options. Beginning with NDB 7.5.13, the
--nodeidand--backupidoptions are both required when invoking ndb_restore.ndb_blob_tool enhancements. Beginning with NDB 7.5.18, the ndb_blob_tool utility can detect missing blob parts for which inline parts exist and replace these with placeholder blob parts (consisting of space characters) of the correct length. To check whether there are missing blob parts, use the
--check-missingoption with this program. To replace any missing blob parts with placeholders, use the--add-missingoption.For more information, see Section 21.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables”.
--ndb-log-fail-terminate option. Beginning with NDB 7.5.18, you can cause the SQL node to terminate whenever it is unable to log all row events fully. This can be done by starting mysqld with the
--ndb-log-fail-terminateoption.NDB programs—NDBT dependency removal. The dependency of a number of
NDButility programs on theNDBTlibrary has been removed. This library is used internally for development, and is not required for normal use; its inclusion in these programs could lead to unwanted issues when testing.Affected programs are listed here, along with the
NDBversions in which the dependency was removed:ndb_restore, in NDB 7.5.15
ndb_show_tables, in NDB 7.5.18
ndb_waiter, in NDB 7.5.18
The principal effect of this change for users is that these programs no longer print
NDBT_ProgramExit -following completion of a run. Applications that depend upon such behavior should be updated to reflect the change when upgrading to the indicated versions.statusAuto-Installer deprecation and removal. The MySQL NDB Cluster Auto-Installer web-based installation tool (ndb_setup.py) is deprecated in NDB 7.5.20, and is removed in NDB 7.5.21 and later. It is no longer supported.
ndbmemcache deprecation and removal.
ndbmemcacheis no longer supported.ndbmemcachewas deprecated in NDB 7.5.20, and removed in NDB 7.5.21.Node.js support removed. Beginning with the NDB Cluster 7.5.20 release, support for Node.js by NDB 7.5 has been removed.
Support for Node.js by NDB Cluster is maintained in NDB 8.0 only.
Conversion between NULL and NOT NULL during restore operations. Beginning with NDB 7.5.23, ndb_restore can support restoring of
NULLcolumns asNOT NULLand the reverse, using the options listed here:To restore a
NULLcolumn asNOT NULL, use the--lossy-conversionsoption.The column originally declared as
NULLmust not contain anyNULLrows; if it does, ndb_restore exits with an error.To restore a
NOT NULLcolumn asNULL, use the--promote-attributesoption.
For more information, see the descriptions of the indicated ndb_restore options.
OpenSSL 3.0 support. Beginning with NDB 7.5.31, all MySQL server and client binaries included in the
NDBdistribution are compiled with support for Open SSL 3.0
ClusterJPA is no longer supported beginning with NDB 7.5.7; its source code and binary have been removed from the NDB Cluster distribution.
NDB Cluster 7.5 is also supported by MySQL Cluster Manager, which provides an advanced command-line interface that can simplify many complex NDB Cluster management tasks. See MySQL Cluster Manager 1.4.8 User Manual, for more information.