MYSQL general tablespace

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

--从mysql 5.7.6 开始其支持 general tablespace,其可以创建在一个相对路径或绝对路径上
--A general tablespace is a shared tablespace, similar to the system tablespace. It can hold multiple tables,
--and supports all table row formats. General tablespaces can also be created in a location relative to or independent of the MySQL data directory


--创建表空间是必需指定数据文件名(只支持一个数据文件),且以 .db 为后缀
--the data file name must have a .ibd extension. An InnoDB general tablespace only supports a single data file

--创建表空间
CREATE TABLESPACE test_ts ADD DATAFILE '/tmp/testts.ibd' ENGINE=INNODB;

--FILE_BLOCK_SIZE只在存储压缩表时才必需,注意压缩表和非压缩表不能在同一个表空间中
--The FILE_BLOCK_SIZE setting is only required if you will use the tablespace to store compressed InnoDB tables (ROW_FORMAT=COMPRESSED).
--If FILE_BLOCK_SIZE is equal innodb_page_size, the tablespace can only contain tables with an uncompressed row format (COMPACT, REDUNDANT, and DYNAMIC row formats). 
--Tables with a COMPRESSED row format have a different physical page size than uncompressed tables.
--Therefore, compressed tables cannot coexist in the same tablespace as uncompressed tables

--没有指定 FILE_BLOCK_SIZE,不能存储压缩表
mysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE test_ts ROW_FORMAT=COMPRESSED;
ERROR 1478 (HY000): InnoDB: Tablespace `test_ts` cannot contain a COMPRESSED table


--修改表空间属性
mysql> drop tablespace test_ts;
Query OK, 0 rows affected (0.04 sec)

mysql> CREATE TABLESPACE test_ts ADD DATAFILE '/tmp/testts.ibd' FILE_BLOCK_SIZE=8192 ENGINE=INNODB;
Query OK, 0 rows affected (0.14 sec)

mysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE test_ts ROW_FORMAT=COMPRESSED;
Query OK, 0 rows affected (0.71 sec)


--当表空间中有表存在时,必需先清空表,才能删除表空间
--Use DROP TABLESPACE to remove a general tablespace. All tables must be dropped from a general tablespace using DROP TABLE prior to dropping the tablespace
mysql> drop tablespace test_ts;
ERROR 1529 (HY000): Failed to drop TABLESPACE test_ts
mysql> drop table t1;
Query OK, 0 rows affected (0.25 sec)

mysql> drop tablespace test_ts;
Query OK, 0 rows affected (0.01 sec)


--Tables with a COMPRESSED row format have a different physical page size than uncompressed tables.
mysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE test_ts ROW_FORMAT=DYNAMIC;
ERROR 1478 (HY000): InnoDB: Tablespace `test_ts` uses block size 8192 and cannot contain a table with physical page size 16384

--If FILE_BLOCK_SIZE is equal innodb_page_size, the tablespace can only contain tables with an uncompressed row format (COMPACT, REDUNDANT, and DYNAMIC row formats)
mysql> CREATE TABLESPACE test_ts ADD DATAFILE '/tmp/testts.ibd' FILE_BLOCK_SIZE=16384 ENGINE=INNODB;
Query OK, 0 rows affected (0.09 sec)

mysql> show variables like '%page_size%';
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| innodb_page_size | 16384 |
| large_page_size  | 0     |
+------------------+-------+

mysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE test_ts ROW_FORMAT=DYNAMIC;
Query OK, 0 rows affected (0.07 sec)

mysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE test_ts ROW_FORMAT=compressed;
ERROR 1478 (HY000): InnoDB: Tablespace `test_ts` cannot contain a COMPRESSED table


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
4月前
|
缓存 关系型数据库 MySQL
在 MySQL 中使用 SPACE 函数
【8月更文挑战第5天】
149 3
在 MySQL 中使用 SPACE 函数
|
存储 关系型数据库 MySQL
MySQL innodb_undo_tablespaces相关参数
在MySQL中,`innodb_undo_tablespaces` 是一个用于配置 InnoDB 回滚段表空间数量的参数。这个参数决定了InnoDB存储引擎在执行事务回滚时使用的回滚段表空间的数量。 下面是关于 `innodb_undo_tablespaces` 的一些相关信息: 1. **默认值:** 在MySQL 5.7和之前的版本中,默认值是1。在MySQL 8.0中,它的默认值被改为2。 2. **作用:** 该参数控制了 InnoDB 存储引擎用于存储回滚段数据的表空间的数量。回滚段用于存储事务未提交的数据,以便在需要回滚时进行恢复。 3. **影响性能:** 调整 `inn
276 0
|
Oracle 关系型数据库
oracle no privileges on tablespace 'USERS
oracle no privileges on tablespace 'USERS
124 0
|
关系型数据库 MySQL
MySQL的INFORMATION_SCHEMA使用
MySQL的INFORMATION_SCHEMA使用
|
关系型数据库 MySQL 数据安全/隐私保护
mysql8.0版本skip-grant-tables出现的新问题
mysql8.0版本skip-grant-tables出现的新问题MySQL 初始化 mysqld --initialize 的时候会有密码,就这个样子, 可是毕竟总有人跟我一样,不熟悉安装过程,没有注意这一密码这一项,导致你现在不知道密码的尴尬处境,或者说你是正常用了某一天脑子短路忘了密码, 那...
2726 0
|
SQL 关系型数据库 MySQL
MySQL8.0 - 新特性 - 通过SQL管理UNDO TABLESPACE
前言 InnoDB的undo log从5.6版本开始可以存储到单独的tablespace文件中,在5.7版本支持了在线undo文件truncate,解决了长期以来的undo膨胀问题。而到了8.0版本,对Undo tablespace做了进一步的优化:在新版本中,我们可以拥有更多的回滚段(每个Undo tablespace可以有128个回滚段,而在之前的版本中所有tablespace的回滚段不允许超过128个),减少了由于事务公用回滚段产生的锁冲突;可以在线动态的增删undo tablespace,使得undo的管理更加灵活。
3614 0
|
SQL MySQL 关系型数据库
Why You Should Use HybridDB for MySQL for Online and Offline Data Separation
HybridDB for MySQL helps you separate online and offline data in a precise, economical, and secure way.
2380 0
Why You Should Use HybridDB for MySQL for Online and Offline Data Separation
|
JavaScript 关系型数据库
MySQL 5.7 GR Multi-Primary
MySQL 5.7 GR Multi-Primary
1346 0
|
关系型数据库 数据库 PostgreSQL
|
SQL 关系型数据库 MySQL
关于mysql中information_schema.tables
项目中出现这样一个SQL语句,现记录如下: @Select("select table_name tableName, engine, table_comment tableComment, create_time createTime from information_schema.
1822 0