2019-12-04 15:00:57 +02:00
|
|
|
# Create 2 UNDO TABLESPACE(UNDO001(space_id =3), UNDO002(space_id =4))
|
2018-03-22 14:19:16 +05:30
|
|
|
CREATE TABLE t1(a varchar(60)) ENGINE INNODB;
|
|
|
|
start transaction;
|
|
|
|
INSERT INTO t1 VALUES(1);
|
|
|
|
# xtrabackup backup
|
|
|
|
# Display undo log files from target directory
|
2019-12-04 15:00:57 +02:00
|
|
|
undo001
|
|
|
|
undo002
|
2018-03-22 14:19:16 +05:30
|
|
|
# xtrabackup prepare
|
|
|
|
# Display undo log files from targer directory
|
2019-12-04 15:00:57 +02:00
|
|
|
undo001
|
|
|
|
undo002
|
2018-03-22 14:19:16 +05:30
|
|
|
DROP TABLE t1;
|
2024-04-30 14:16:08 +05:30
|
|
|
#
|
|
|
|
# MDEV-33980 mariadb-backup --backup is missing
|
|
|
|
# retry logic for undo tablespaces
|
|
|
|
#
|
|
|
|
# xtrabackup backup
|
|
|
|
# Display undo log files from target directory
|
|
|
|
FOUND 5 /Retrying to read undo tablespace*/ in backup.log
|