mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
![Marko Mäkelä](/assets/img/avatar_default.png)
Before commit6112853cda
in MySQL 4.1.1 introduced the parameter innodb_file_per_table, all InnoDB data was written to the InnoDB system tablespace (often named ibdata1). A serious design problem is that once the system tablespace has grown to some size, it cannot shrink even if the data inside it has been deleted. There are also other design problems, such as the server hang MDEV-29930 that should only be possible when using innodb_file_per_table=0 and innodb_undo_tablespaces=0 (storing both tables and undo logs in the InnoDB system tablespace). The parameter innodb_change_buffering was deprecated in commitb5852ffbee
. Starting with commitbaf276e6d4
(MDEV-19229) the number of innodb_undo_tablespaces can be increased, so that the undo logs can be moved out of the system tablespace of an existing installation. If all these things (tables, undo logs, and the change buffer) are removed from the InnoDB system tablespace, the only variable-size data structure inside it is the InnoDB data dictionary. DDL operations on .ibd files was optimized in commit86dc7b4d4c
(MDEV-24626). That should have removed any thinkable performance advantage of using innodb_file_per_table=0. Since there should be no benefit of setting innodb_file_per_table=0, the parameter should be deprecated. Starting with MySQL 5.6 and MariaDB Server 10.0, the default value is innodb_file_per_table=1.
80 lines
2.8 KiB
Text
80 lines
2.8 KiB
Text
-- source include/innodb_checksum_algorithm.inc
|
|
-- source include/innodb_page_size.inc
|
|
-- source include/have_file_key_management_plugin.inc
|
|
|
|
SET @saved_encrypt_tables = @@global.innodb_encrypt_tables;
|
|
SET @saved_encryption_threads = @@global.innodb_encryption_threads;
|
|
SET @saved_encryption_key_id = @@global.innodb_default_encryption_key_id;
|
|
|
|
SET GLOBAL innodb_encrypt_tables = ON;
|
|
SET GLOBAL innodb_encryption_threads = 4;
|
|
|
|
SET GLOBAL innodb_default_encryption_key_id=4;
|
|
|
|
let MYSQLD_DATADIR =`SELECT @@datadir`;
|
|
|
|
# ROW_FORMAT=COMPRESSED is unavailable with innodb_page_size=32k or 64k
|
|
let $row_format_compressed= `select case when @@global.innodb_page_size>16384
|
|
then 'ROW_FORMAT=DYNAMIC' else 'ROW_FORMAT=COMPRESSED' end`;
|
|
|
|
eval create table tce(a serial, b blob, index(b(10))) engine=innodb
|
|
$row_format_compressed encrypted=yes;
|
|
eval create table tc(a serial, b blob, index(b(10))) engine=innodb
|
|
$row_format_compressed encrypted=no;
|
|
eval create table te(a serial, b blob, index(b(10))) engine=innodb
|
|
encrypted=yes;
|
|
eval create table t(a serial, b blob, index(b(10))) engine=innodb
|
|
encrypted=no;
|
|
eval create table tpe(a serial, b blob, index(b(10))) engine=innodb
|
|
page_compressed=yes encrypted=yes;
|
|
eval create table tp(a serial, b blob, index(b(10))) engine=innodb
|
|
page_compressed=yes encrypted=no;
|
|
|
|
begin;
|
|
eval insert into tce(b) values (repeat('secret',20));
|
|
eval insert into tc(b) values (repeat('secret',20));
|
|
eval insert into te(b) values (repeat('secret',20));
|
|
eval insert into t(b) values (repeat('secret',20));
|
|
eval insert into tpe(b) values (repeat('secret',20));
|
|
eval insert into tp(b) values (repeat('secret',20));
|
|
commit;
|
|
|
|
eval FLUSH TABLES tce, tc, te, t, tpe, tp FOR EXPORT;
|
|
perl;
|
|
do "$ENV{MTR_SUITE_DIR}/include/innodb-util.pl";
|
|
ib_backup_tablespaces("test", ("tce", "tc", "te", "t", "tpe", "tp"));
|
|
EOF
|
|
--list_files $MYSQLD_DATADIR/test
|
|
UNLOCK TABLES;
|
|
|
|
ALTER TABLE tce DISCARD TABLESPACE;
|
|
ALTER TABLE tc DISCARD TABLESPACE;
|
|
ALTER TABLE te DISCARD TABLESPACE;
|
|
ALTER TABLE t DISCARD TABLESPACE;
|
|
ALTER TABLE tpe DISCARD TABLESPACE;
|
|
ALTER TABLE tp DISCARD TABLESPACE;
|
|
|
|
perl;
|
|
do "$ENV{MTR_SUITE_DIR}/include/innodb-util.pl";
|
|
ib_restore_tablespaces("test", ("tce", "tc", "te", "t", "tpe", "tp"));
|
|
EOF
|
|
|
|
ALTER TABLE tce IMPORT TABLESPACE;
|
|
update tce set b=substr(b,1);
|
|
ALTER TABLE tc IMPORT TABLESPACE;
|
|
update tc set b=substr(b,1);
|
|
ALTER TABLE te IMPORT TABLESPACE;
|
|
update te set b=substr(b,1);
|
|
ALTER TABLE t IMPORT TABLESPACE;
|
|
update t set b=substr(b,1);
|
|
ALTER TABLE tpe IMPORT TABLESPACE;
|
|
update tpe set b=substr(b,1);
|
|
ALTER TABLE tp IMPORT TABLESPACE;
|
|
update tp set b=substr(b,1);
|
|
|
|
CHECK TABLE tce, tc, te, t, tpe, tp;
|
|
DROP TABLE tce, tc, te, t, tpe, tp;
|
|
|
|
SET GLOBAL innodb_encrypt_tables = @saved_encrypt_tables;
|
|
SET GLOBAL innodb_encryption_threads = @saved_encryption_threads;
|
|
SET GLOBAL innodb_default_encryption_key_id = @saved_encryption_key_id;
|