Opened at 2011-01-18T15:59:59Z
Last modified at 2013-11-28T01:50:28Z
#1331 new defect
--verify option for `tahoe backup`
Reported by: | chrysn | Owned by: | nobody |
---|---|---|---|
Priority: | major | Milestone: | undecided |
Component: | code-frontend-cli | Version: | 1.7.1 |
Keywords: | tahoe-backup preservation backupdb gridid verify | Cc: | amontero@… |
Launchpad Bug: |
Description (last modified by amontero)
tahoe backup will happily end its operation even if the files that are to be backupped are not present on any node.
there are two parts of this problem:
- the backupdb seems not to track introducer urls (e.g. when one backups the same directory to different clouds)
- caps the new version relies on are not verified
while the first could be un-fixable for all i know (that is, in case tahoe has no concept of "different clouds"), for the second one i suggest the following:
- have a --verify option that takes four values:
- none -- rely on caps remembered in backupdb to be present
- shallow -- check for the existence of every cap remembered from backupdb
- deep -- do a deep check on all caps used in the backup db
- checksum -- calculate the data checksums of all files involved in re-using a cap, and compare to the reference cap (this requires equal convergence secrets)
the current implementation (i'm using 1.7.1, but the changelog doesn't mention anything relevant) does the equivalent of none, which is especially a problem together with the first problem mentioned above.
i'd suggest at least --verify=shallow to be default for backups; it has the advantage of keeping the O(1) network traffic advantage of the backupdb.
another switch should be created to configure whether verify misses are to be treated critical or should just be reported to stderr. (--verify-fatal or similar)
Change History (4)
comment:1 Changed at 2011-01-18T20:27:53Z by davidsarah
- Component changed from unknown to code-frontend-cli
- Keywords tahoe-backup preservation backupdb gridid verify added
comment:2 Changed at 2011-01-29T21:50:07Z by warner
- Component changed from code-frontend-cli to unknown
comment:3 Changed at 2011-02-03T18:55:18Z by warner
- Component changed from unknown to code-frontend-cli
argh, I did *not* touch the Component button, I don't know why my comment caused the component to get cleared.
comment:4 Changed at 2013-11-28T01:50:28Z by amontero
- Cc amontero@… added
- Description modified (diff)
Yeah, those are good points.
We don't have a strong notion of "different clouds" yet. We've talked about putting a "grid id" into each filecap (see #403), but that's a deep problem, and touches on how we want people to deploy and join grids, so it's not going to be solved right away. It might help to put a copy of the introducer.furl (or maybe just its !TubID) into the backupdb, and then do extra checking if it changes. We don't currently have a good way to extract the introducer.furl from the webapi, so we might need to add that.
It's not obvious from the docs, but the "tahoe backup" command *does* do lightweight checking of the files it touches on a probabilistic basis: source:docs/backupdb.rst and source:src/allmydata/scripts/backupdb.py have some details. In short, each filecap will be checked at least once every two months, and possibly once every month, on a randomized basis to spread the load smoothly over multiple "tahoe backup" runs. If you do a daily backup, about 3% of the files will be checked each time.
This filecheck is the same as what you'd get with "tahoe check" or "tahoe deep-check": it asks the connected storage servers whether they have a share or not, and is satisfied if at least N distinct shares are then found. If not, it re-uploads the file.
That said, it might be a good idea to improve this process, or add some knows to make for more stringent checking, like your various --verify options. I'm not sure how to translate from the levels of verification you describe to the facilities currently present in tahoe:
Hm, here's an easy idea: when doing a backup, the very first time we encounter a file that is already in the backupdb (but not on later files in that backup run), do an immediate full verify on it (download all shares and check them against the filecap). If that fails, turn on "do a filecheck for every file" mode: if we're connected to the wrong grid or using the wrong client node or something, we'll always hit this. And filechecks, while not free, are much cheaper than a full fileverify or re-upload.
If we add the introducer.furl field to the backupdb, then the rule should simply be that we ignore any backupdb entries that are associated with the wrong introducer. Alternatively, we could force a file-check on any entry that had the wrong introducer, which would save time in cases when e.g. the introducer had merely moved to a new IP address, or when the introducer changed but all the storage servers remained. However, that would slow down the case where the client was now on a completely different grid, since it would do a pointless filecheck for each one before uploading.
To "check for the existence" of a cap, we have to talk to a bunch of storage servers (there's no local memory of the cap having been uploaded, except for the backupdb). So this sort of checking actually costs O(N) in the number of files (actually O(numfiles*numservers)).
In the current code, filecheck failures trigger a new upload, so backup always succeeds if the files can be uploaded to the current grid. But it might be interesting to have a flag that means "I expect that most of my data should already be in this grid: please tell me (by failing) if I'm wrong".