mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
![Thirunarayanan Balathandayuthapani](/assets/img/avatar_default.png)
- InnoDB fails to shrink the system tablespace when it contains the leaked undo log pages caused by MDEV-30671. - InnoDB does free the unused segment in system tablespace before shrinking the tablespace. InnoDB fails to free the unused segment if XA PREPARE transaction exist or if the previous shutdown was not with innodb_fast_shutdown=0 inode_info: Structure to store the inode page and offsets. fil_space_t::garbage_collect(): Frees the system tablespace unused segment fsp_get_sys_used_segment(): Iterates through all default file segment and index segment present in system tablespace. trx_sys_t::is_xa_exist(): Returns true if the XA transaction exist in the undo logs fseg_inode_free(): Frees the extents, fragment pages for the given index node and ignores any error similar to trx_purge_free_segment() trx_sys_t::reset_page(): Retain the TRX_SYS_FSEG_HEADER value in trx_sys page while resetting the page.
25 lines
1 KiB
Text
25 lines
1 KiB
Text
# restart: --debug_dbug=d,undo_segment_leak
|
|
SET GLOBAL INNODB_FILE_PER_TABLE=0;
|
|
Warnings:
|
|
Warning 1287 '@@innodb_file_per_table' is deprecated and will be removed in a future release
|
|
CREATE TABLE t1(f1 INT NOT NULL, f2 INT NOT NULL)ENGINE=InnoDB;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
INSERT INTO t1 SELECT seq, seq FROM seq_1_to_4096;
|
|
UPDATE t1 SET f1 = f1 + 1 WHERE f1 > 1000;
|
|
UPDATE t1 SET f2 = f2 + 1 WHERE f1 > 1000;
|
|
UPDATE t1 SET f1 = f2 + 1 WHERE f1 > 1000;
|
|
UPDATE t1 SET f2 = f1 + 1 WHERE f1 > 1000;
|
|
DELETE FROM t1;
|
|
DROP TABLE t1;
|
|
set GLOBAL innodb_fast_shutdown=0;
|
|
SELECT NAME, FILE_SIZE FROM information_schema.innodb_sys_tablespaces WHERE SPACE = 0;
|
|
NAME FILE_SIZE
|
|
innodb_system 79691776
|
|
# restart
|
|
SELECT NAME, FILE_SIZE FROM information_schema.innodb_sys_tablespaces WHERE SPACE = 0;
|
|
NAME FILE_SIZE
|
|
innodb_system 12582912
|