percona-xtrabackup icon indicating copy to clipboard operation
percona-xtrabackup copied to clipboard

Open source hot backup tool for InnoDB and XtraDB databases

Results 34 percona-xtrabackup issues
Sort by recently updated
recently updated
newest added

This PR contains fixes to - PXB-3220 tolerate file deletion between discovery and file open - PXB-3227 Dropped table is still in the backup - PXB-3229 Can't create/write to file...

Fix a memory out of bounds read when `chunk_name.size() < 21` ```diff - if (chunk_name.size() < 22 && chunk_name[chunk_name.size() - 21] != '.') { + if (chunk_name.size() < 22 ||...

fix:https://perconadev.atlassian.net/browse/PXB-3130 Backup using xtrabackup 8.0.30, and then prepare using xtrabackup 8.0.33. The error is as follows: InnoDB: Assertion failure: log0recv.cc:4353:log.m_files.find(recovered_lsn) != log.m_files.end() I0825 22:33:01.738934 05155 ???:1] xtrabackup80 - InnoDB: thread...

Content-MD5 header is required for the PutObject in case Object Lock is activated as per: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html > The Content-MD5 header is required for any request to upload an object with...

Commits from Marce and my first commit with design modifications

Using the _--history_ option registers the backup metadata in the local database. When using replication (classic, ReplicaSet, Cluster...), the replica is in RO (or SRO). If we want to execute...