mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
1c55b845e0
Added support to BACKUP STAGE to maria-backup This is a port of the code from ES 10.6 See MDEV-5336 for backup stages description. The following old options are not supported by the new code: --rsync ; This is because rsync will not work on tables that are in used. --no-backup-locks ; This is disabled as mariadb-backup will always use backup locks for better performance.
19 lines
623 B
Text
19 lines
623 B
Text
--source include/innodb_page_size.inc
|
|
|
|
# Check if ibd smaller than page size are skipped
|
|
# It is possible, due to race conditions that new file
|
|
# is created by server while xtrabackup is running
|
|
# The first page in this file does not yet exist.
|
|
# xtrabackup should skip such file.
|
|
|
|
let $_datadir= `SELECT @@datadir`;
|
|
write_file $_datadir/test/small.ibd;
|
|
EOF
|
|
echo #backup;
|
|
|
|
let $targetdir=$MYSQLTEST_VARDIR/tmp/backup;
|
|
--disable_result_log
|
|
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --parallel=10 --target-dir=$targetdir;
|
|
--enable_result_log
|
|
remove_file $_datadir/test/small.ibd;
|
|
rmdir $targetdir;
|