mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
It is not safe to invoke trx_purge_free_segment() or execute innodb_undo_log_truncate=ON before all undo log records in the rollback segment has been processed. A prominent failure that would occur due to premature freeing of undo log pages is that trx_undo_get_undo_rec() would crash when trying to copy an undo log record to fetch the previous version of a record. If trx_undo_get_undo_rec() was not invoked in the unlucky time frame, then the symptom would be that some committed transaction history is never removed. This would be detected by CHECK TABLE...EXTENDED that was impleented in commit ab0190101b0587e0e03b2d75a967050b9a85fd1b. Such a garbage collection leak should be possible even when using innodb_undo_log_truncate=OFF, just involving trx_purge_free_segment(). trx_rseg_t::needs_purge: Change the type from Boolean to a transaction identifier, noting the most recent non-purged transaction, or 0 if everything has been purged. On transaction start, we initialize this to 1 more than the transaction start ID. On recovery, the field may be adjusted to the transaction end ID (TRX_UNDO_TRX_NO) if it is larger. The field TRX_UNDO_NEEDS_PURGE becomes write-only; only some debug assertions that would validate the value. The field reflects the old inaccurate Boolean field trx_rseg_t::needs_purge. trx_undo_mem_create_at_db_start(), trx_undo_lists_init(), trx_rseg_mem_restore(): Remove the parameter max_trx_id. Instead, store the maximum in trx_rseg_t::needs_purge, where trx_rseg_array_init() will find it. trx_purge_free_segment(): Contiguously hold a lock on trx_rseg_t to prevent any concurrent allocation of undo log. trx_purge_truncate_rseg_history(): Only invoke trx_purge_free_segment() if the rollback segment is empty and there are no pending transactions associated with it. trx_purge_truncate_history(): Only proceed with innodb_undo_log_truncate=ON if trx_rseg_t::needs_purge indicates that all history has been purged. Tested by: Matthias Leich
91 lines
2.1 KiB
Plaintext
91 lines
2.1 KiB
Plaintext
#
|
|
# Bug #84958 InnoDB's MVCC has O(N^2) behaviors
|
|
# https://bugs.mysql.com/bug.php?id=84958
|
|
#
|
|
# Set up the test with a procedure and a function.
|
|
#
|
|
SET @saved_frequency= @@GLOBAL.innodb_purge_rseg_truncate_frequency;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency= 1;
|
|
CREATE PROCEDURE insert_n(start int, end int)
|
|
BEGIN
|
|
DECLARE i INT DEFAULT start;
|
|
WHILE i <= end do
|
|
INSERT INTO t1 VALUES (1, 2, 3) ON DUPLICATE KEY UPDATE c = i;
|
|
SET i = i + 1;
|
|
END WHILE;
|
|
END~~
|
|
CREATE FUNCTION num_pages_get()
|
|
RETURNS INT
|
|
BEGIN
|
|
DECLARE ret INT;
|
|
SELECT variable_value INTO ret
|
|
FROM information_schema.global_status
|
|
WHERE variable_name = 'innodb_buffer_pool_read_requests';
|
|
RETURN ret;
|
|
END~~
|
|
#
|
|
# Create a table with one record in it and start an RR transaction
|
|
#
|
|
CREATE TABLE t1 (a INT, b INT, c INT, PRIMARY KEY(a,b), KEY (b,c))
|
|
ENGINE=InnoDB STATS_PERSISTENT=0;
|
|
InnoDB 0 transactions not purged
|
|
BEGIN;
|
|
SELECT * FROM t1;
|
|
a b c
|
|
#
|
|
# Create 100 newer record versions in con2 and con3
|
|
#
|
|
connect con2, localhost, root,,;
|
|
connection con2;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (1, 2, 3) ON DUPLICATE KEY UPDATE c = NULL;
|
|
CALL insert_n(1, 50);;
|
|
connect con3, localhost, root,,;
|
|
connection con3;
|
|
BEGIN;
|
|
CALL insert_n(51, 100);;
|
|
connection con2;
|
|
COMMIT;
|
|
connection con3;
|
|
INSERT INTO t1 VALUES (1, 2, 1) ON DUPLICATE KEY UPDATE c = NULL;
|
|
COMMIT;
|
|
connection default;
|
|
#
|
|
# Connect to default and record how many pages were accessed
|
|
# when selecting the record using the secondary key.
|
|
#
|
|
InnoDB 2 transactions not purged
|
|
SET @num_pages_1 = num_pages_get();
|
|
SELECT * FROM t1 force index (b);
|
|
a b c
|
|
SET @num_pages_2= num_pages_get();
|
|
SELECT IF(@num_pages_2 - @num_pages_1 < 5000, 'OK', @num_pages_2 - @num_pages_1) num_pages_diff;
|
|
num_pages_diff
|
|
OK
|
|
#
|
|
# Commit and show the final record.
|
|
#
|
|
SELECT * FROM t1;
|
|
a b c
|
|
SELECT * FROM t1 force index (b);
|
|
a b c
|
|
COMMIT;
|
|
SELECT * FROM t1 force index (b);
|
|
a b c
|
|
1 2 NULL
|
|
SELECT * FROM t1;
|
|
a b c
|
|
1 2 NULL
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check status OK
|
|
#
|
|
# Cleanup
|
|
#
|
|
disconnect con2;
|
|
disconnect con3;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency= @saved_frequency;
|
|
DROP TABLE t1;
|
|
DROP PROCEDURE insert_n;
|
|
DROP FUNCTION num_pages_get;
|