search
HomeDatabaseMysql TutorialA brief introduction to mysql cluster (picture)

1. What isMySQLCluster

MySQL cluster is a shared-nothing, distributed node architecture storage scheme, which is designed to provide fault tolerance and high performance.

Data update uses the read-committed isolation level to ensure the consistency of data on all nodes, and uses the two-phase commit mechanism (two-phasedcommit) to ensure that all nodes have the same data (if any If the write operation fails, the update fails).

Shared-nothing peer nodes make update operations on one server immediately visible on other servers. Propagating updates uses a complex communication mechanism designed to provide high throughput across the network.

Distribute the load through multiple MySQL servers to maximize program performance and ensure high availability and redundancy by storing data in different locations.

## 2. Architecture diagram



#3. How to store data
##1. The master-slave synchronization in the Mysqlcluster data node group uses synchronous replication to ensure the consistency of node data in the group. Generally implemented through a two-phase commit protocol, the general working process is as follows:

a) 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.

b) Each slave must prepare a transaction, and then send an OK (or ABORT) message to the master, indicating that the transaction is ready (or the transaction cannot be prepared).

c) Master waits for all Slaves to send OK or ABORT messages

If the Master receives OK messages from all Slaves, it will send Slave sends a commit message to tell Slave to submit the transaction;

If the Master receives an ABORT message from any Slave, it sends an ABORT message to all Slave to tell the Slave to abort the transaction.

e) Each Slave waits for an OK or ABORT message from the Master.

If the Slave receives a commit request, they will submit the transaction and send a confirmation that the transaction has been submitted to the Master;

If the Slave receives Upon receiving a cancellation request, they will undo all changes and release the occupied resources, thus aborting the transaction, and then send confirmation to Masterv that the transaction has been aborted.

f) 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 must be directly connected.


Question: Will expanding the cluster and adding data node groups cause the data update speed to decrease?

Answer: No, the data update speed will be faster. Because the data is processed separately, the data stored in each node group is different,

can also reduce locking.

2.Mysqlcluster stores all index columns in main memory, and other non-index columns can be stored in memory or stored on disk by creating a table space. If the data changes (insert, update, delete, etc.), the mysql cluster writes the changed records to the redo log, and then regularly writes the data to the disk through checkpoints. Because redo logs are committed asynchronously, a small number of transactions may be lost during a failure. In order to reduce transaction loss, MySQL Cluster implements delayed writes (default delay of two seconds, configurable), so that checkpoint writes can be completed when a failure occurs without losing the last checkpoint. Generally, the failure of a single data node will not cause any data loss because synchronous data replication is used within the cluster.

4.MySQL Horizontal expansion of the cluster

#1. Add a data node group to expand the write Operation to improve the storage capacity of the cluster. Online expansion is supported. First, add new nodes to clsuter. After starting, use the

ALTER ONLINE TABLE table_name REORGANIZE PARTITION

command to migrate data and distribute the data evenly to the data nodes.

2. Adding Slave only expands reading, but cannot achieve horizontal expansion of write operations.

The average load of the entire system can be described as:

AverageLoad=∑readload+ ∑writeload / ∑capacity

Assume that each server has 10,000 transactions per second, and the Master's write load per second is 4,000 transactions, and the read load per second The load is 6000, and the result is:


AverageLoad=6000+4000/10000=100%

Now, add 3 slaves, and the transaction volume per second increases to 40,000. Because write operations are also replicated, each write operation is executed 4 times, so the write load of each slave is 4000 transactions per second. Then the current load average is:


AverageLoad=6000+4*4000/ 4*10000=55%

五、MySQL Advantages and Disadvantages of Cluster

Advantages:

a) 99.999% high availability

b) Fast automatic failover

c) Flexible distributed architecture, no single point of failure

d )High throughput and low latency

e) Strong scalability, supports online expansion

Disadvantages:

a) There are many limitations, such as: foreign keys are not supported

b) Deployment, management, and configuration are complex

c) It takes up a lot of disk space and memory

d) Backup and recovery are inconvenient

e) When restarting, the data node will Loading into memory takes a long time

The above is the detailed content of A brief introduction to mysql cluster (picture). For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.