https://dev.mysql.com/mysql-cluster-replication-preparation.html
Ensure that each MySQL server acting as a replication master is configured with a unique server ID, and with binary logging enabled, using the row format. Preparing the NDB Cluster for replication consists of the following steps: Check all MySQL ...
https://dev.mysql.com/mysql-cluster-replication-starting.html
Start the MySQL replication master server by issuing this command: shellM> mysqld --ndbcluster --server-id=id \ --log-bin --ndb-log-bin & In the previous statement, id is this server's unique ID (see Section 22.6.2, “General Requirements for NDB ... This section outlines the procedure for starting NDB Cluster replication using a single replication ...
https://dev.mysql.com/mysql-cluster-shm-definition.html
Communications between NDB cluster nodes are normally handled using TCP/IP. The shared memory (SHM) transporter is distinguished by the fact that signals are transmitted by writing in memory rather than on a socket. The shared-memory transporter ...
https://dev.mysql.com/mysql-cluster-tcp-definition.html
These are the same unique Id values for each of these nodes as described in Section 22.3.3.7, “Defining SQL and Other API Nodes in an NDB Cluster”. These are the same unique Id values for each of these nodes as described in Section 22.3.3.7, ...
https://dev.mysql.com/mysqldump.html
This option is effective only for nonunique indexes of MyISAM tables. --order-by-primary Dump each table's rows sorted by its primary key, or by its first unique index, if such an index exists. The mysqldump client utility performs logical backups, ...
https://dev.mysql.com/optimizing-queries-myisam.html
(For unique indexes, this is always 1.) MySQL uses this to decide which index to choose when you join two tables based on a nonconstant expression. This is a good way to make queries faster if you have a unique index from which you want to read all ... Some general tips for speeding up queries on MyISAM tables: To help MySQL better optimize queries, use ANALYZE TABLE or run myisamchk --analyze on a table after it has been loaded with ...
https://dev.mysql.com/pluggable-storage-common-layer.html
From a technical perspective, what are some of the unique supporting infrastructure components that are in a storage engine? Some of the key feature differentiations include: Concurrency: Some applications have more granular lock requirements (such ... A MySQL pluggable storage engine is the component in the MySQL database server that is responsible for performing the actual data I/O operations for a database as well as enabling and enforcing certain feature sets that target a specific application ...
https://dev.mysql.com/replication-howto-masterbaseconfig.html
To configure a master to use binary log file position based replication, you must ensure that binary logging is enabled, and establish a unique server ID. Each server within a replication topology must be configured with a unique server ID, which ...If this has not already been done, a server restart is ...
https://dev.mysql.com/replication-howto.html
There are some generic tasks that are common to all setups: On the master, you must ensure that binary logging is enabled, and configure a unique server ID. On each slave that you want to connect to the master, you must configure a unique server ID.
https://dev.mysql.com/replication-options-master.html
On the master and each slave, you must set the server_id system variable to establish a unique replication ID. For each server, you should pick a unique positive integer in the range from 1 to 232 − 1, and each ID must be different from every ...