mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 06:35:31 +02:00

The aim of the InnoDB change buffer is to avoid delays when a leaf page of a secondary index is not present in the buffer pool, and a record needs to be inserted, delete-marked, or purged. Instead of reading the page into the buffer pool for making such a modification, we may insert a record to the change buffer (a special index tree in the InnoDB system tablespace). The buffered changes are guaranteed to be merged if the index page actually needs to be read later. The change buffer could be useful when the database is stored on a rotational medium (hard disk) where random seeks are slower than sequential reads or writes. Obviously, the change buffer will cause write amplification, due to potentially large amount of metadata that is being written to the change buffer. We will have to write redo log records for modifying the change buffer tree as well as the user tablespace. Furthermore, in the user tablespace, we must maintain a change buffer bitmap page that uses 2 bits for estimating the amount of free space in pages, and 1 bit to specify whether buffered changes exist. This bitmap needs to be updated on every operation, which could reduce performance. Even if the change buffer were free of bugs such as MDEV-24449 (potentially causing the corruption of any page in the system tablespace) or MDEV-26977 (corruption of secondary indexes due to a currently unknown reason), it will make diagnosis of other data corruption harder. Because of all this, it is best to disable the change buffer by default.
55 lines
1.5 KiB
Text
55 lines
1.5 KiB
Text
#
|
|
# Bug#69122 - INNODB DOESN'T REDO-LOG INSERT BUFFER MERGE
|
|
# OPERATION IF IT IS DONE IN-PLACE
|
|
#
|
|
call mtr.add_suppression("InnoDB: innodb_read_only prevents crash recovery");
|
|
call mtr.add_suppression("Plugin initialization aborted at srv0start\\.cc");
|
|
call mtr.add_suppression("Plugin 'InnoDB'");
|
|
FLUSH TABLES;
|
|
CREATE TABLE t1(
|
|
a INT AUTO_INCREMENT PRIMARY KEY,
|
|
b CHAR(1),
|
|
c INT,
|
|
INDEX(b))
|
|
ENGINE=InnoDB STATS_PERSISTENT=0;
|
|
SET GLOBAL innodb_change_buffering_debug = 1;
|
|
SET GLOBAL innodb_change_buffering = all;
|
|
INSERT INTO t1 SELECT 0,'x',1 FROM seq_1_to_8192;
|
|
BEGIN;
|
|
SELECT b FROM t1 LIMIT 3;
|
|
b
|
|
x
|
|
x
|
|
x
|
|
connect con1,localhost,root,,;
|
|
BEGIN;
|
|
DELETE FROM t1 WHERE a=1;
|
|
INSERT INTO t1 VALUES(1,'X',1);
|
|
SET DEBUG_DBUG='+d,crash_after_log_ibuf_upd_inplace';
|
|
SELECT b FROM t1 LIMIT 3;
|
|
ERROR HY000: Lost connection to MySQL server during query
|
|
disconnect con1;
|
|
connection default;
|
|
FOUND 1 /Wrote log record for ibuf update in place operation/ in mysqld.1.err
|
|
# restart: --innodb-read-only
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check Error Unknown storage engine 'InnoDB'
|
|
test.t1 check error Corrupt
|
|
FOUND 1 /innodb_read_only prevents crash recovery/ in mysqld.1.err
|
|
# restart: --innodb-force-recovery=5
|
|
SELECT * FROM t1 LIMIT 1;
|
|
a b c
|
|
1 X 1
|
|
SHOW ENGINE INNODB STATUS;
|
|
Type Name Status
|
|
InnoDB insert 0, delete mark 0
|
|
SET GLOBAL innodb_fast_shutdown=0;
|
|
# restart
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check status OK
|
|
SHOW ENGINE INNODB STATUS;
|
|
Type Name Status
|
|
InnoDB
|
|
DROP TABLE t1;
|