-
Hey, I'm using restic and rustic together, depending on different hosts. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @duracell and thanks for the question! Currently there is no verification of blobs before upload. As with restic, such problems would be detected by Note that rustic uses the original C implementation of the zstd algorithm by facebook (https://github.com/rustic-rs/rustic_core) and provides the compression parameters defined there (e.g. up to level 22), like e.g. the |
Beta Was this translation helpful? Give feedback.
-
Thanks for this very fast and detailed feedback! |
Beta Was this translation helpful? Give feedback.
Hi @duracell and thanks for the question!
Currently there is no verification of blobs before upload. As with restic, such problems would be detected by
check --read-data
.If there is the wish for an additional verification, we can add this possibility, but I would favor to have this as optional feature which can switched on using CLI options or the config file. If you wish this to be implemented, please open a feature request issue - best in https://github.com/rustic-rs/rustic_core, where this needs to be implemented. I think the implementation would be not too hard, but might slow down backup runs a bit...
Note that rustic uses the original C implementation of the zstd algorithm by faceb…