This article brings you relevant knowledge about mysql, which mainly introduces issues related to clone. MySQL 8.0.17 introduces the Clone plug-in, which can be performed locally or from a remote MySQL server. Clone the instance, I hope it will be helpful to everyone.
Recommended learning: mysql tutorial
Introduction to the clone plug-in
MySQL 8.0. 17 introduced the Clone plug-in, which can be cloned locally or from a remote MySQL server instance. The cloned data is a physical snapshot of the data stored in InnoDB, including schemas, tables, tablespaces and data dictionary metadata. Cloning operations include local cloning and remote cloning.
Local cloning operation: Remote clone operation:
Install cloning plug -in
Use the clone plug -in for cloning operation. You must first perform a plug -in Installation and configuration. The name of the plug-in is mysql_clone.so, and there are two ways to install it.
Method 1:
The MySQL database plug-in is placed in the directory corresponding to the system variable plugin_dir by default. Use the --plugin-load-add option to load the plug-in when the MySQL server starts. However, this method requires you to specify the corresponding options every time you start the server, which can be configured in the my.cnf file, that is:
[mysqld] plugin-load-add=mysql_clone.so
Method 2:
Load the plug-in at runtime, Use INSTALL PLUGIN to install and register the plug-in in the mysql.plugin system table:
install plugin clone soname 'mysql_clone.so';
After installation, it can be viewed in the information_schema.plugins table or through show plugins.
Clone local data
Local clone data is to clone the MySQL data directory to the same server or node to another directory. The supported syntax is as follows,
CLONE LOCAL DATA DIRECTORY [=] '/path/to/clone_dir'
Execute the above statement, corresponding The user needs to have BACKUP_ADMIN permissions, and the files or tablespaces created by the user must be in the data directory. At the same time, the destination of cloning needs to specify an absolute path. The full path to the directory must exist, but clone_dir must not exist.
Demo: Clone local data
1) Create user
mysql> select version(); +-----------+ | version() | +-----------+ | 8.0.25 | +-----------+ 1 row in set (0.00 sec) mysql> create user clone_admin identified by 'Cl0neTest'; Query OK, 0 rows affected (0.02 sec) mysql> grant backup_admin on *.* to clone_admin; Query OK, 0 rows affected (0.10 sec)
2) Create directory
[root@node1 ~]# mkdir /mysql/clone/ [root@node1 ~]# chown -R mysql:mysql /mysql/clone/
3) Clone operation
mysql> clone local data directory='/mysql/clone/clone_data'; Query OK, 0 rows affected (17.09 sec)
4) View the cloned file
[root@node1 ~]# ll /mysql/clone/clone_data/ total 6348816 drwxr-x---. 2 mysql mysql 89 Nov 28 11:26 #clone -rw-r-----. 1 mysql mysql 9231 Nov 28 11:26 ib_buffer_pool -rw-r-----. 1 mysql mysql 4294967296 Nov 28 11:26 ibdata1 -rw-r-----. 1 mysql mysql 1073741824 Nov 28 11:26 ib_logfile0 -rw-r-----. 1 mysql mysql 1073741824 Nov 28 11:26 ib_logfile1 drwxr-x---. 2 mysql mysql 6 Nov 28 11:26 mysql -rw-r-----. 1 mysql mysql 25165824 Nov 28 11:26 mysql.ibd drwxr-x---. 2 mysql mysql 4096 Nov 28 11:26 sakila drwxr-x---. 2 mysql mysql 28 Nov 28 11:26 sys -rw-r-----. 1 mysql mysql 16777216 Nov 28 11:26 undo_001 -rw-r-----. 1 mysql mysql 16777216 Nov 28 11:26 undo_002
5) Verify, use the cloned directory to start the database
[root@node1 ~]# service mysql.server stop Shutting down MySQL.... SUCCESS! [root@node1 ~]# mysqld_safe --datadir=/mysql/clone/clone_data/ --lower-case-table-names=1 --user=mysql 2021-11-28T03:47:11.012900Z mysqld_safe Logging to '/mysql/clone/clone_data/node1.com.cn.err'. 2021-11-28T03:47:11.036181Z mysqld_safe Starting mysqld daemon with databases from /mysql/clone/clone_data
Clone remote data
Clone the remote MySQL server instance (donor) and It is transmitted to the MySQL instance (recipient) that performs the cloning operation. The supported syntax for cloning remote data is as follows:
CLONE INSTANCE FROM 'user'@'host':port IDENTIFIED BY 'password' [ DATA DIRECTORY [ = ] 'clone_dir' ] [ REQUIRE [ NO ] SSL ]
where
- user is the user name of the donor MySQL server instance;
- password is the user's password;
- host is the hostname address of the donor MySQL server instance. Currently, IPv4 is supported, but IPv6 is not supported, but aliases can be used;
- port is donor The port number of the MySQL server instance;
- DATA DIRECTORY [ = ] 'clone_dir' is an optional clause used to specify the directory for receiving clone data. Not specifying this option will overwrite the existing data file. Specifying this option to transfer clone data to this directory;
- REQUIRE [NO] SSL explicitly specifies whether to use an encrypted connection;
To perform a clone operation, the clone plug-in must be in donor and recipient MySQL The server instance is activated. In the donor server instance, cloning users requires BACKUP_ADMIN permissions. In the recipient server instance, cloning users requires CLONE_ADMIN permissions. CLONE_ADMIN permissions include BACKUP_ADMIN and SHUTDOWN permissions.
The following prerequisites must be met to execute the CLONE INSTANCE statement:
- donor和recipient必须有相同的MySQL服务器版本,克隆插件在8.0.17版本后支持;
- donor和recipient必须运行在相同的操作系统和平台;
- 克隆数据,recipient必须有足够的磁盘空间;
- InnoDB需要在数据目录外面创建表空间,可通过INFORMATION_SCHEMA.FILES查看;
- 克隆插件必须在donor和recipient激活,可通过SHOW PLUGINS查看;
- donor和recipient必须有相同的MySQL服务器字符集和排序规则;
- donor和recipient需要有相同的innodb_page_size和innodb_data_file_path设置;
- 若克隆加密或页压缩的数据,donor和recipient必须有相同的文件系统块大小;
- 若克隆加密的数据,需要安全的连接;
- recipient上的clone_valid_donor_list设置必须包括donor MySQL服务器实例的主机地址;
- 一次只能有一个克隆操作,克隆期间不能有其他克隆操作,可通过clone_status查看;
- 克隆插件以1MB数据包和元数据的形式传输数据,在donor和recipient MySQL服务器实例上所需的最小max_allowed_packet是2MB;
- donor上的Undo表空间文件名必须唯一,当数据克隆到recipient,undo表空间克隆到recipient 上innodb_undo_directory指定的位置或DATA DIRECTORY [ = ] 'clone_dir' 子句指定的目录;
- 默认,recipient MySQL服务器实例在克隆数据完成后自动重启;
- 几个变量控制远程克隆操作的各个方面;
演示:克隆远程数据
默认将数据克隆到recipient端的数据目录,并使用donor的数据进行覆盖,然后进行自动重启recipient端的MySQL服务器实例
1)登录到donor MySQL服务器实例,创建用户并安装插件(若安装可忽略)
mysql> create user 'donor_clone_user' identified by 'donor_clone_user'; Query OK, 0 rows affected (0.02 sec) mysql> grant backup_admin on *.* to donor_clone_user; Query OK, 0 rows affected (0.01 sec)
2)登录到recipient MySQL服务器实例,创建账户并安装插件,并设置clone_valid_donor_list
mysql> create user recipient_clone_user identified by 'recipient_clone_user'; Query OK, 0 rows affected (0.04 sec) mysql> grant clone_admin,backup_admin on *.* to recipient_clone_user; Query OK, 0 rows affected (0.01 sec) mysql> install plugin clone soname 'mysql_clone.so'; Query OK, 0 rows affected (0.01 sec) mysql> set global clone_valid_donor_list='192.168.56.53:3306'; Query OK, 0 rows affected (0.00 sec)
3)登录到recipient MySQL服务器实例,使用 recipient_clone_user用户或root用户执行克隆操作,操作完成后会自动重启
mysql> clone instance from 'donor_clone_user'@'192.168.56.81':3306 identified by 'donor_clone_user'; Query OK, 0 rows affected (51.08 sec)
注:将donor的数据克隆到recipient端默认会覆盖其数据文件,也可以指定一个目录进行克隆,如下:
mysql> clone instance from 'donor_clone_user'@'192.168.56.81':3306 identified by 'donor_clone_user' data directory='/mysql/clone/clone_data'; Query OK, 0 rows affected (51.17 sec)
使用新目录启动MySQL服务器实例:
[root@node2 clone]# mysqld --lower-case-table-names=1 --datadir=/mysql/clone/clone_data/ --user=mysql &
推荐学习:mysql视频教程
The above is the detailed content of MySQL detailed analysis of Clone plug-in. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


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 Mac version
God-level code editing software (SublimeText3)

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

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
