You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MDEV-36304 InnoDB: Missing FILE_CREATE, FILE_DELETE or FILE_MODIFY error during mariabackup --prepare
Problem:
=======
- During --prepare of partial backup, if InnoDB encounters the redo
log for the excluded tablespace then InnoDB stores the space id in
dirty tablespace list during recovery, anticipates that it may
encounter FILE_* redo log records in the future. Even though
we encounter FILE_* record for the partial excluded tablespace
then we fail to replace the name in dirty tablespace list.
This lead to missing of FILE_* redo log records error.
Fix:
===
srv_prepare_partial_backup: Variable for the server to indicate
whether the redo log has been applied on partial backup
xtrabackup_read_backup_info_file(): Reads the mariabackup_info file
from target directory and sets srv_prepare_partial_backup value
based on partial information exist in file.
fil_name_process(): Rename the file name from "" to name encountered
during FILE_* records during prepare on partial backup directory
0 commit comments