comment
This commit is contained in:
parent
022e63cdde
commit
21c0d5be6e
3 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
[[!comment format=mdwn
|
||||
username="joey"
|
||||
subject="""comment 6"""
|
||||
date="2022-01-07T16:12:20Z"
|
||||
content="""
|
||||
Current thinking on deleting corrupted tmp files: If a download succeeds,
|
||||
and verification then fails, the whole file content has been downloaded,
|
||||
and is corrupt. So it would be ok to always delete it then, as far as p2p
|
||||
transfers goes.
|
||||
|
||||
For other remotes, the same is often true. The only exceptions are like
|
||||
rsync and bittorrent, which can recover from corruption on retry. But,
|
||||
I don't think either rsync or bittorrent will usually write corrupt data
|
||||
to a file anyway. They would catch over-the-wire corruption with rolling
|
||||
checksums etc. So, it seems like a verification should never fail after
|
||||
a successful rsync or bittorrent download. Unless the disk corrupted the
|
||||
data in the meantime. Which is an unlikely situation, and not one that it's
|
||||
really necessary for git-annex to recover from with optimal efficiency.
|
||||
|
||||
... Oh interesting.. It already is supposed to do that, in
|
||||
getViaTmpFromDisk. It seems, what is happening is the transfer fails
|
||||
when all the file content is present, and so it never gets to the point of
|
||||
verifying it, let alone deleting it.
|
||||
"""]]
|
Loading…
Add table
Add a link
Reference in a new issue