环境
mysql版本:5.7.19
官方文档:(https://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html)
查看目前属于哪种表空间
mysql> show variables like '%per_%';
共享表空间会显示为off:
独立表空间会显示为on:
从独立表空间切换到共享表空间
[root@mini2 employees]# vim /etc/my.cnf
[root@mini2 employees]# service mysqld start
这时再登录mysql,看看innodb_file_per_table的值是否已改变为off。
此时如果创建innodb引擎的表,可以发现只会有frm文件:
从共享表空间切换到独立表空间
步骤同上,只是将my.cnf中加:
innodb_file_per_table=1
验证步骤也同上。
此时如果创建innodb引擎的表,可以发现除了有frm文件,还有ibd文件: