-
-
Notifications
You must be signed in to change notification settings - Fork 747
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
Consider holes in sparse files when reading #1354
Comments
The problem why we do not have that yet (and also not #14), is that the The |
#5620 adds a little bit to improve processing all-zero chunks within |
The So, while the |
(#14)
The scope of this ticket is to avoid reading holes when archives are created. I.e. use SEEK_HOLE/DATA to detect holes and skip over them entirely, adding the correct amount of zero-chunks and feeding just enough data into the chunker at the end of the hole that it retains the same state as if we'd read all the zeroes.
This approach avoids feeding all the zeroes of a hole through the chunker and HMAC'ing them (for the chunk id).
Note:
The text was updated successfully, but these errors were encountered: