The difference between the cluster and the master-slave in mysql: the master-slave ensures data consistency through mysql replication; it is asynchronous compared to the data synchronization method of the mysql cluster. Because it is asynchronous, there may be a slight delay in copying data between the master and the slave, and inconsistencies may occur.
Recommended course: MySQL Tutorial.
The master and slave use mysql replication to ensure data consistency. Compared with the data synchronization method of mysql cluster, it is asynchronous.
The cluster uses PXC (Percona XtraDB Cluster), multi-node data is synchronized in real time (read and write)
About master-slave
Master-slave can ensure the separation of reading and writing, that is, the writing operation is on the master and the reading operation is on the slave. There are also multiple master-slave modes. Here we only talk about one master and multiple slaves.
For example, there are two business modules. One module continuously writes order records, etc., and the other module generates reports. If read and write separation is not adopted at this time, the read and write operations will collide, which may cause conflicts and affect Performance, if reading and writing are separated, there is no need to consider reading and writing the same table to affect performance, and multiple slaves can well share the pressure on the server and reduce the pressure on a single machine.
The master-slave uses replication of mysql to ensure data consistency. Compared with the data synchronization method of the cluster, it is asynchronous. Because of asynchronous, there may be a slight delay in copying data between the master and the slave. Delay, and inconsistencies will occur.
Replication: The master node needs to enable binlog, set a unique server-id (unique within the local area network), set the server-id from the slave node, and the binlog records all the messages on the master. The operation will be copied to the relaylog of the slave node and played back on the slave node.
But the master-slave also has shortcomings. One is that it does not meet high availability. The master is down and needs to be switched manually. The business will be interrupted and is not allowed.
The other is that the data is inconsistent and inconsistent. There are many possible reasons. The following are some common ones.
The master library or slave library unexpectedly crashes. The downtime may cause damage to the binlog or relaylog files, resulting in master-slave inconsistency. (There is an article in this blog, which was fixed after the downtime)
If set sql_log_bin=0 is executed before the main library performs changes, the main library will not record the binlog, and the slave library cannot change this. Part of the data
The binlog format of the main library is Statement. After synchronization to the slave library, it may cause inconsistency between the master and the slave.
The slave node is not set to read-only , write data by mistake
The versions of the master and slave instances are inconsistent, especially when the higher version is the master and the lower version is the slave, the functions supported by the master database may not be supported by the slave database. This function is not supported
MySql BUG
Then you need to pay attention to the following matters when using it
-
The main library binlog adopts ROW format
The master and slave instance database versions are consistent
The main library controls the account permissions. You can execute set sql_log_bin=0
The slave library turns on read-only and does not allow manual writing
Perform master-slave consistency check on a regular basis
About the cluster
The biggest advantage of the cluster is real-time data synchronization, high availability, and the data of each node is synchronized Consistent, unlike master-slave, where data inconsistency sometimes occurs, and high availability, any node downtime will not affect the business.
But the disadvantage is performance, write performance. Each write operation will be synchronized between all nodes. There are gains and losses, and a little performance is lost to ensure high availability and data consistency.
In the cluster, there is one management node and multiple SQL nodes and data nodes. Synchronous replication is used between data nodes to ensure data consistency between nodes. Generally, it is submitted through two stages. The general working process is as follows
When the Master executes the commit statement, the transaction is sent to the slave, and the slave begins to prepare for the submission of the transaction
Each slave must prepare the transaction and then send an OK (or ABORT) message to the master, indicating that the transaction is ready (or the transaction cannot be prepared)
Master waits for all slaves to send OK or ABORT message
If the Master receives OK messages from all Slave, it will send a commit message to all Slave, telling the Slave to submit the transaction;
If the Master receives ABORT message from any Slave, it sends ABORT message to all Slave, telling the Slave to abort the transaction.
Each Slave waits for an OK or ABORT message from the Master
If the Slave receives a commit request, they will commit the transaction and send it to Master sends a confirmation that the transaction has been committed;
If the Slave receives a cancellation request, they will undo all changes and release the resources they occupy, thereby aborting the transaction, and then send a confirmation that the transaction has been aborted to Masterv.
When the Master receives confirmation from all Slaves, it will report that the transaction has been committed (or aborted), and then continue with the next transaction
Since synchronous replication requires a total of 4 message transfers, the data update speed of mysql cluster is slower than that of stand-alone mysql. Therefore, mysql cluster is required to run in a LAN of Gigabit or above. The nodes can use dual network cards, and the node groups are directly connected to ensure the data update speed.
The above is the detailed content of The difference between mysql cluster and master-slave. For more information, please follow other related articles on the PHP Chinese website!

InnoDB uses redologs and undologs to ensure data consistency and reliability. 1.redologs record data page modification to ensure crash recovery and transaction persistence. 2.undologs records the original data value and supports transaction rollback and MVCC.

Key metrics for EXPLAIN commands include type, key, rows, and Extra. 1) The type reflects the access type of the query. The higher the value, the higher the efficiency, such as const is better than ALL. 2) The key displays the index used, and NULL indicates no index. 3) rows estimates the number of scanned rows, affecting query performance. 4) Extra provides additional information, such as Usingfilesort prompts that it needs to be optimized.

Usingtemporary indicates that the need to create temporary tables in MySQL queries, which are commonly found in ORDERBY using DISTINCT, GROUPBY, or non-indexed columns. You can avoid the occurrence of indexes and rewrite queries and improve query performance. Specifically, when Usingtemporary appears in EXPLAIN output, it means that MySQL needs to create temporary tables to handle queries. This usually occurs when: 1) deduplication or grouping when using DISTINCT or GROUPBY; 2) sort when ORDERBY contains non-index columns; 3) use complex subquery or join operations. Optimization methods include: 1) ORDERBY and GROUPB

MySQL/InnoDB supports four transaction isolation levels: ReadUncommitted, ReadCommitted, RepeatableRead and Serializable. 1.ReadUncommitted allows reading of uncommitted data, which may cause dirty reading. 2. ReadCommitted avoids dirty reading, but non-repeatable reading may occur. 3.RepeatableRead is the default level, avoiding dirty reading and non-repeatable reading, but phantom reading may occur. 4. Serializable avoids all concurrency problems but reduces concurrency. Choosing the appropriate isolation level requires balancing data consistency and performance requirements.

MySQL is suitable for web applications and content management systems and is popular for its open source, high performance and ease of use. 1) Compared with PostgreSQL, MySQL performs better in simple queries and high concurrent read operations. 2) Compared with Oracle, MySQL is more popular among small and medium-sized enterprises because of its open source and low cost. 3) Compared with Microsoft SQL Server, MySQL is more suitable for cross-platform applications. 4) Unlike MongoDB, MySQL is more suitable for structured data and transaction processing.

MySQL index cardinality has a significant impact on query performance: 1. High cardinality index can more effectively narrow the data range and improve query efficiency; 2. Low cardinality index may lead to full table scanning and reduce query performance; 3. In joint index, high cardinality sequences should be placed in front to optimize query.

The MySQL learning path includes basic knowledge, core concepts, usage examples, and optimization techniques. 1) Understand basic concepts such as tables, rows, columns, and SQL queries. 2) Learn the definition, working principles and advantages of MySQL. 3) Master basic CRUD operations and advanced usage, such as indexes and stored procedures. 4) Familiar with common error debugging and performance optimization suggestions, such as rational use of indexes and optimization queries. Through these steps, you will have a full grasp of the use and optimization of MySQL.

MySQL's real-world applications include basic database design and complex query optimization. 1) Basic usage: used to store and manage user data, such as inserting, querying, updating and deleting user information. 2) Advanced usage: Handle complex business logic, such as order and inventory management of e-commerce platforms. 3) Performance optimization: Improve performance by rationally using indexes, partition tables and query caches.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor