您好,登錄后才能下訂單哦!
下文內(nèi)容主要給大家?guī)?lái)MySQL 5.7通用表空間案例分析,這里所講到的知識(shí),與書(shū)籍略有不同,都是億速云專業(yè)技術(shù)人員在與用戶接觸過(guò)程中,總結(jié)出來(lái)的,具有一定的經(jīng)驗(yàn)分享價(jià)值,希望給廣大讀者帶來(lái)幫助。
1. 背景
* 一個(gè)通用的表空間是一個(gè)共享的InnoDB表空間。
* 與系統(tǒng)表空間類似,一般的表空間是共享的表空間,可以存儲(chǔ)多個(gè)表的數(shù)據(jù)
* 一般的表空間比文件表的表空間具有潛在的內(nèi)存優(yōu)勢(shì)。
* MySQL 將表空間元數(shù)據(jù)保存到一個(gè)表空間的生命周期中。在更少的一般表空間中,多個(gè)表對(duì)表空間元數(shù)據(jù)的內(nèi)存比在單獨(dú)的文件表空間表空間中的相同數(shù)量的表要少。
* 一般的表空間數(shù)據(jù)文件可能放在一個(gè)相對(duì)于MySQL數(shù)據(jù)目錄的目錄中,它為您提供了許多文件表空間的數(shù)據(jù)文件和存儲(chǔ)管理功能。與文件表的表空間一樣,在MySQL數(shù)據(jù)目錄之外放置數(shù)據(jù)文件的能力允許您單獨(dú)管理關(guān)鍵表的性能,為特定的表設(shè)置RAID或DRBD,或者將表綁定到特定的磁盤(pán)。
* MySQL 5.7開(kāi)始支持通用表空間管理功能。
2. MySQL 環(huán)境
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.18 MySQL Community Server (GPL) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> show variables like 'version'; +---------------+--------+ | Variable_name | Value | +---------------+--------+ | version | 5.7.18 | +---------------+--------+ 1 row in set (0.01 sec) mysql> show variables like 'datadir'; +---------------+-------------------+ | Variable_name | Value | +---------------+-------------------+ | datadir | /data/mysql_data/ | +---------------+-------------------+ 1 row in set (0.04 sec)
3. 創(chuàng)建通用表空間
* 創(chuàng)建表空間文件存放目錄
[root@MySQL mytest]# mkdir -v /mysql_general_data mkdir: created directory `/mysql_general_data'
* 查看mysqld 運(yùn)行用戶
[root@MySQL mytest]# ps aux | grep mysqld | grep -v grep root 1468 0.0 0.0 110400 1532 ? S 16:00 0:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/data/mysql_data --pid-file=/data/mysql_data/MySQL.pid mysql 1614 0.1 5.0 1309380 196656 ? Sl 16:00 0:06 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/data/mysql_data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/data/mysql_data/error.log --pid-file=/data/mysql_data/MySQL.pid
* 修改表空間文件存放目錄所屬用戶與組為mysql運(yùn)行用戶 [ 此步必須 ]
[root@MySQL mytest]# chown -v mysql.mysql /mysql_general_data changed ownership of `/mysql_general_data' to mysql:mysql
* 創(chuàng)建通用表空間
ADD datafile: 指定通用表空間文件存放路徑
FILE_BLOCK_SIZE: 指定文件塊大小,推薦與Innodb_page_size參數(shù)大小對(duì)應(yīng)
ENGINE: 指定存儲(chǔ)引擎
mysql> CREATE TABLESPACE ts1 ADD datafile '/mysql_general_data/ts1.ibd' FILE_BLOCK_SIZE=16384 ENGINE=InnoDB; Query OK, 0 rows affected (0.06 sec) mysql> show variables like 'innodb_page_size'; +------------------+-------+ | Variable_name | Value | +------------------+-------+ | innodb_page_size | 16384 | +------------------+-------+ 1 row in set (0.02 sec)
* 查看通用表空間文件
mysql> system ls -l /mysql_general_data; total 64 -rw-r----- 1 mysql mysql 65536 Jul 5 17:15 ts1.ibd
4. 測(cè)試通用表空間文件
* 使用通用表空間作為數(shù)據(jù)存儲(chǔ)創(chuàng)建表
mysql> CREATE TABLE test_general( -> id BIGINT PRIMARY KEY NOT NULL AUTO_INCREMENT, -> name VARCHAR(64) NOT NULL -> )ENGINE=InnoDB TABLESPACE=ts1 DEFAULT CHARSET=utf8mb4; Query OK, 0 rows affected (0.04 sec)
* 查看表信息
mysql> show create table test_general; +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | test_general | CREATE TABLE `test_general` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, PRIMARY KEY (`id`) ) /*!50100 TABLESPACE `ts1` */ ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 | +--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.06 sec)
* 查看表文件
mysql> select database(); +------------+ | database() | +------------+ | mytest | +------------+ 1 row in set (0.01 sec) mysql> system ls -l /data/mysql_data/mytest; total 16 -rw-r----- 1 mysql mysql 67 Jul 5 16:30 db.opt -rw-r----- 1 mysql mysql 8586 Jul 5 17:19 test_general.frm
5. 刪除表空間文件
* 有表占用時(shí)直接刪除
mysql> drop tablespace ts1; ERROR 1529 (HY000): Failed to drop TABLESPACE ts1
* 先刪除占用表,再刪除
mysql> drop table test_general; Query OK, 0 rows affected (0.04 sec) mysql> drop tablespace ts1; Query OK, 0 rows affected (0.03 sec)
6. 總結(jié)
以需求驅(qū)動(dòng)技術(shù),技術(shù)本身沒(méi)有優(yōu)略之分,只有業(yè)務(wù)之分。
對(duì)于以上關(guān)于MySQL 5.7通用表空間案例分析,如果大家還有更多需要了解的可以持續(xù)關(guān)注我們億速云的行業(yè)推新,如需獲取專業(yè)解答,可在官網(wǎng)聯(lián)系售前售后的,希望該文章可給大家?guī)?lái)一定的知識(shí)更新。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。