fix object mgr _fetch_chunker() to use chunk_size appropriately #449
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
for your consideration...
chunk_sizeincorrectly and thereforecausing data corruption on fetched objects.
chunk_size+1bytes (0 -> chunk_size; inclusive)chunk_size, thus overlappingthe previous chunk by 1 byte. (
0-4096,4096-8192, etc...)[last byte (4096) of previous read was re-read as the first byte
on next fetch]
Here's what my trace of a
fetch_object(container, obj, chunk_size=4096)call (within_fetch_chunker()):notice that even though we asked for chunks of 4096 we're actually retrieving 4097 bytes. And, each subsequent read starts at the last byte of the previous read. This causes data corruption with bytes being duplicated. Below is a hexdump of the two files i used to compare. On the left is the original. On the right is the copy that's be uploaded and then downloaded once again using
fetch_object():Note that on byte 0x1000 (byte 4096) we see the byte value 68 repeated and then everything shifts over by a single byte.