We’re using MySQL version 5.7.34 and xbstream/xbcloud 2.4.24.
We’re testing taking backups using xbcloud for backups larger than the S3 object size limit (5TB). When restoring backups using xbcloud we’re seeing a few different errors.
The general command that we’re using is:
xbcloud get --parallel=16 --storage=s3 --s3-endpoint=s3.amazonaws.com:443 --s3-bucket=<bucket> <backupname> | sudo -u mysql xbstream --extract --decrypt=aes256 --encrypt-key-file=<key file> --parallel=1 --encrypt-threads=1 --directory=/var/lib/mysql/
And the backup restores fine. However, we’re trying to speed up the process by setting the --parallel
and --encrypt-threads
options on xbstream similarly to our existing non-xbcloud restore process and we being to see a few different types of errors:
xbcloud get --parallel=16 --storage=s3 --s3-endpoint=s3.amazonaws.com:443 --s3-bucket=<bucket> <backupname> | sudo -u mysql xbstream --extract --decrypt=aes256 --encrypt-key-file=<key file> --parallel=8 --encrypt-threads=8 --directory=/var/lib/mysql/
xbstream:xb_crypt_decrypt invalid plaintext hash. Wrong encrytion key specified?
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: failed to decrypt chunk.
xbstream: my_write() failed.
decrypt: incomplete data, 60 bytes are still not decrypted.
decrypt: incomplete data, 60 bytes are still not decrypted.
decrypt: incomplete data, 60 bytes are still not decrypted.
decrypt: incomplete data, 60 bytes are still not decrypted.
Another type of error I found when testing different values:
xbcloud get --parallel=4 --storage=s3 --s3-endpoint=s3.amazonaws.com:443 --s3-bucket=<bucket> <backupname> | sudo -u mysql xbstream --extract --decrypt=aes256 --encrypt-key-file=<key file> --parallel=16 --encrypt-threads=16 --directory=/var/lib/mysql/
211005 18:38:12 [04] decompressing ./sbtest/customer2.ibd.qp
qpress: Data error, not recoverable
qpress: Source file is corrupted - try the -R flag to recover
cat: write error: Broken pipe
211005 18:38:13 [04] removing ./sbtest/customer2.ibd.qp
211005 18:38:13 [04] decompressing ./sbtest/stock3.ibd.qp
211005 18:38:17 [04] removing ./sbtest/stock3.ibd.qp
211005 18:38:17 [04] decompressing ./sbtest/stock7.ibd.qp
qpress: Data error, not recoverable
qpress: Source file is corrupted - try the -R flag to recover
cat: write error: Broken pipe
Error: decrypt and decompress thread 0 failed.
Error: decrypt and decompress thread 1 failed.
Error: decrypt and decompress thread 2 failed.
Error: decrypt and decompress thread 3 failed.
Error: decrypt and decompress thread 4 failed.
Is there a different way we should be constructing the restore commands to make use of the parallel/encrypt-threads options?