checker for mutable files: make "check" button on wui work #205
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#205
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently if you click the "check" button on a mutable file it raises an exception saying it doesn't know how to check that kind of file.
I don't think we plan to do this before the end of December, so I'm putting it in Milestone 1.0.
Zooko and I came up with a refactoring of the mutable.Retrieve class that
would make it fairly easy to re-use the same code between Retrieve, Checker,
and Verifier.
The bulk of the code is in a new class, tenatively named
mutable.CiphertextRetrieval
. This class is given a verifier capability,a peer getter (i.e.
client.get_permuted_peers
, and a value of epsilon(which might be 'infinity'). It might also get some indication of how much
data should be fetched: as little as possible, or full verification of all
outstanding shares. Likewise it might need to know if we want to get
ciphertext from all available versions, or just the most recent. This class
returns a
MutableRetrievalResults
instance.This
CiphertextRetrieval
class then does the queries and readvs, andpopulates the results instance with several things:
upload.UploadResults
gets(shnum, peerid, good/bad) tuples. This is most useful for the checker.
one for each version that appears to be retrievable
ciphertext_string) tuple.
The
MutableFileNode
would then be responsible for doing two things withthe
MutableRetrievalResults
object:ciphertext_map
andtaking the value associated with the last key
The checker would be more interested in the version_map: the most useful
checker results would be "version 34 is retrievable, and there are 9 out of
10 shares available".
A more sophisticated app (some variant of
MutableFileNode
could exposemultiple versions to the application, instead of only picking the most recent
one. Single-version apps might benefit from knowing that there are
validly-signed shares of a newer version out there, even if that version has
too few shares to be retrieved. (i.e. version_map has a key which is greater
than the highest key of retrieveable_versions).
There are lots of intermediate points here. A really basic checker would just
care if any version is retrievable. A full verifier would want to download
all shares and check all signatures (signalling errors along the way). An
appropriate balance between bandwidth+CPU versus results will lie somewhere
in between.
checker for mutable filesto checker for mutable files / refactor Retrieve to show multiple versionsThe mutable file code has been refactored to make multiple versions visible to the application layer. It has not been modified to separate ciphertext retrieval from plaintext retrieval.
however, there is new code in source:src/allmydata/mutable/checker.py which implements the Verifier in a different way. The regular download code is designed to do as little work as possible, while the verifier wants to download (and verify) as much data as possible. So the two goals are not particularly well aligned, making it more appropriate to use two separate classes.
The remaining pieces of this ticket are to make the 'check' button on the webapi work properly. This either means nailing down what the return value from filenode.check() ought to be, or incorporating the mutable checker results into the Checker service's results table.
checker for mutable files / refactor Retrieve to show multiple versionsto checker for mutable files: make "check" button on wui workMy current plan:
ICheckerResults
, and stores a small amount of data into the checkerservice (indexed by verify-cap)
filenode, invokes a check/verify, and uses results.to_html() to render the
output.
shares were where, request latency information, maybe pretty pictures
showing the distribution of servers and shares around the peer-selection
ring. If the check triggered a repair, the results of the repair
operation will be included on this page.
the detailed output is ignored.
resulting page (to bring the user back to the parent directory).
ImmutableVerifierNode
andMutableVerifierNode
, whichhave check/verify/repair methods.
from verifier caps
merely a repository for checker results
we've now got
ICheckerResults
, and the Checker service is gone, and we've removed results-storage altogether. The new scheme is to invoke the .check() method on a filenode or dirnode, instead of passing a URI to the Checker.Ok, I'm now happy with the way the checker is driven. The web pages look good.