Detailed example of MySQL exchange partition

Detailed example of MySQL exchange partition

Detailed example of MySQL exchange partition

Preface

Before introducing the exchange partition, let's first understand the mysql partition.

There are two types of database partitioning: horizontal partitioning and vertical partitioning. MySQL does not currently support vertical partitioning, so what follows is all about horizontal partitioning. Horizontal partitioning means partitioning the table in rows. For example: partition by time, one partition for each year, etc.

In MySQL, partitions are exchangeable, and the data in a partition of a partition table can be interchanged with that in a normal table.

Implementation of swap partition

1. Syntax of swap partition

alter table pt exchange partition p with table nt;

explain:

Exchange the data in partition p of partition table pt and a normal table nt.

Prerequisites for exchange:

  • The ordinary table nt is not a temporary table and is not a partitioned table.
  • The table structure is consistent with the structure of the partition table pt.
  • The normal table nt has no foreign key references.
  • If the general table nt is not empty. In MySQL 5.6 and earlier versions, the data must be within the partition range. In MySQL 5.7 and later, the data can be outside the partition range and still be successfully stored in the partition.

2. Experimental swap partition

(1) Create a partition table and insert data

# Create a partition table
CREATE TABLE e (
  id INT NOT NULL,
  fname VARCHAR(30),
  lname VARCHAR(30)
)
  PARTITION BY RANGE (id) (
    PARTITION p0 VALUES LESS THAN (50),
    PARTITION p1 VALUES LESS THAN (100),
    PARTITION p2 VALUES LESS THAN (150),
    PARTITION p3 VALUES LESS THAN (MAXVALUE)
);

# Insert several records into partition table e INSERT INTO e VALUES
  (1669, "Jim", "Smith"),
  (337, "Mary", "Jones"),
  (16, "Frank", "White"),
  (2005, "Linda", "Black");

(2) Create a common table e2 with the same structure as partition table e

# Create a table e2
mysql> create table e2 like e;

# Delete the partition of table e2 to make it a normal table mysql> alter table e2 remove partitioning;

(3) Check how many rows there are in each partition of table e

mysql> select PARTITION_NAME, TABLE_ROWS
  -> FROM INFORMATION_SCHEMA.PARTITIONS
  -> WHERE TABLE_NAME = 'e';
+----------------+------------+
| PARTITION_NAME | TABLE_ROWS |
+----------------+------------+
| p0 | 1 |
| p1 | 0 |
| p2 | 0 |
| p3 | 3 |
+----------------+------------+
4 rows in set (0.00 sec)

(4) Exchange partition p0 of table e to ordinary table e2

mysql> alter table e exchange partition p0 with table e2;

(5) View the results

# The data in partition P0 of table e is gonemysql> SELECT PARTITION_NAME, TABLE_ROWS
  -> FROM INFORMATION_SCHEMA.PARTITIONS
  -> WHERE TABLE_NAME = 'e';
+----------------+------------+
| PARTITION_NAME | TABLE_ROWS |
+----------------+------------+
| p0 | 0 |
| p1 | 0 |
| p2 | 0 |
| p3 | 3 |
+----------------+------------+
4 rows in set (0.00 sec)

# In table e2, there is a record from partition p0 of table emysql> SELECT * FROM e2;
+----+-------+-------+
| id | fname | lname |
+----+-------+-------+
| 16 | Frank | White |
+----+-------+-------+
1 row in set (0.00 sec)

It can be found that the data of partition p0 of table e has been moved to table e2.

The above example exchanges a partition with an ordinary empty table, which is equivalent to moving the data of a partition out. It is usually used in data archiving.

Similarly, the exchange partition can also be exchanged between a partition and a non-empty ordinary table, so that the data in the ordinary table will be moved to the specified partition, and the data in the specified partition will be moved to the ordinary table. Do as follows:

(6) Add another piece of data to p0 of partition table e

# Add a record in partition p0 to table e mysql> INSERT INTO e VALUES (41, "Michael", "Green");      
Query OK, 1 row affected (0.05 sec)               

# Confirm that the inserted data is indeed stored in partition p0
mysql> SELECT PARTITION_NAME, TABLE_ROWS
  -> FROM INFORMATION_SCHEMA.PARTITIONS
  -> WHERE TABLE_NAME = 'e';      
+----------------+------------+       
| PARTITION_NAME | TABLE_ROWS |       
+----------------+------------+       
| p0 | 1 |       
| p1 | 0 |       
| p2 | 0 |       
| p3 | 3 |       
+----------------+------------+       
4 rows in set (0.00 sec)

(7) Execute swap partition

​mysql> alter table e exchange partition p0 with table e2;
Query OK, 0 rows affected (0.28 sec)

(8) View the results

# Previously, p0 of table e was exchanged to a piece of data in table e2, and now it is back to table e
mysql> SELECT * FROM e;
+------+-------+-------+
| id | fname | lname |
+------+-------+-------+
| 16 | Frank | White |   
| 1669 | Jim | Smith |
| 337 | Mary | Jones |
| 2005 | Linda | Black |
+------+-------+-------+
4 rows in set (0.00 sec)

mysql> SELECT * FROM e2;
+----+---------+-------+
| id | fname | lname |
+----+---------+-------+
| 41 | Michael | Green |
+----+---------+-------+
1 row in set (0.00 sec)

From this we can see that the data in table e's p0 and table e2 have been swapped! This scenario can be used when moving data from a common table to a partition in a partitioned table .

However, there is one thing to note:

If the data of the common table is not within the range of the partition to be exchanged, the above syntax for exchanging partitions cannot be executed successfully! Please see the operation below.

(9) Insert a piece of data that exceeds the p0 range of table e into the ordinary table e2 and execute the above exchange statement

mysql> INSERT INTO e2 VALUES (51, "Ellen", "McDonald");
Query OK, 1 row affected (0.08 sec)

mysql> alter table e exchange partition p0 with table e2;
ERROR 1707 (HY000): Found row that does not match the partition

In MySQL 5.6, this problem cannot be solved; in MySQL 5.7.5, an option WITHOUT VALIDATION is added to solve the above error. The operation is as follows:

mysql> ALTER TABLE e EXCHANGE PARTITION p0 WITH TABLE e2 WITHOUT VALIDATION;
Query OK, 0 rows affected (0.02 sec)

View the results:

# The data with id 51 is also stored in p0 of table e mysql> select * from e partition(p0);
+------+---------+----------+
| id | fname | lname |
+------+---------+----------+
| 41 | Michael | Green |
| 51 | Ellen | McDonald | 
+------+---------+----------+

mysql> SELECT * FROM e2;
+----+---------+-------+
| id | fname | lname |
+----+---------+-------+
| 16 | Frank | White |
+----+---------+-------+
1 row in set (0.00 sec)

Summarize

Through the above practical operations, we found that the MySQL exchange partition function has two applicable scenarios:

A partition of a partition table is exchanged with an empty ordinary table so that the data of the partition of the partition table is moved out.
Exchange a partition of a partition table with a non-empty ordinary table so that the data of the ordinary table is moved to the specified partition of the partition table.

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • A simple way to change the password of mysql just installed in Linux
  • CentOS 6.6 source code compilation and installation of MySQL 5.7.18 tutorial detailed explanation
  • Solution to MySql Error 1698 (28000)
  • Solution to the problem that the number of MySQL connections is limited to 214 in CentOS 7
  • Analyzing the troublesome Aborted warning in MySQL through case studies
  • Solve the problem that IN subquery in MySQL will cause the index to be unusable

<<:  Summary of common problems and solutions in Vue (recommended)

>>:  CentOS7 deployment Flask (Apache, mod_wsgi, Python36, venv)

Recommend

Example of using swiper plugin to implement carousel in Vue

Table of contents vue - Use swiper plugin to impl...

A brief introduction to React

Table of contents 1. CDN introduction 1.1 react (...

Summary of MySQL password modification methods

Methods for changing passwords before MySQL 5.7: ...

Detailed explanation of the use of Join in Mysql

In the previous chapters, we have learned how to ...

Solution to invalid margin-top of elements in div tags

Just as the title says. The question is very stran...

Docker starts Redis and sets the password

Redis uses the apline (Alps) image of Redis versi...

MySQL detailed explanation of isolation level operation process (cmd)

Read uncommitted example operation process - Read...

Super detailed MySQL usage specification sharing

Recently, there have been many database-related o...

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...

WeChat Mini Program to Implement Electronic Signature

This article shares the specific code for impleme...

Detailed analysis of MySQL instance crash cases

[Problem description] Our production environment ...

Implementation of two basic images for Docker deployment of Go

1. golang:latest base image mkdir gotest touch ma...

The latest Linux installation process of tomcat8

Download https://tomcat.apache.org/download-80.cg...

Vue's detailed code for implementing the shuttle box function

Vue - implement the shuttle box function, the eff...