-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Include PAR as an option #1
Comments
The original intention for this application is for the files to reside on storage targets that are not prone to such issues, such as those offered by Google, Amazon, Backblaze, Azure, etc. I did look into adding this feature (specifically, Reed-Solomon erasure encoding) but reasoned it was not required for this project. If there is interest in using targets that don't have such file resiliency guarantees where adding parity bits to each file makes sense, I'd be happy to add this as an option in the future. |
I would definitely suggest something along these lines. "file resiliency guarantees" don't help you when the file you are working with is corrupt somehow. But then, I'm a backup nut. I use ZFS send/recv, Backuppc, Borg, and Proxmox all on the same data. |
So S3, Google, Azure and Backblaze guarantee data integrity? -- I'm looking at using this tool/project to backup my ZFS pool to Backblaze |
Yes, almost all intended targets come with some SLA on the durability of the data you store on there, and since zfsbackup-go supports multiple targets, you can increase your durability by utilizing multiple providers. Note: I am still working on adding Azure/Backblaze targets, should hit within a week or two. Google: 99.999999999% durability - they mention the usage of erasure encodings I also use the checksum features of the targets available to ensure that data is delivered properly when storing the data (e.g. CRC32C for Google, MD5 for S3, etc.) This is all computed as the ZFS send stream is chunked and made ready for uploading. |
Nice! Thanks for the writeup! We should put this in the README for reference? |
How does it handle the backup files being corrupted? Maybe include par as an option.
The text was updated successfully, but these errors were encountered: