diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-12-18 17:16:05 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-01-08 17:07:35 +0100 |
commit | 39360f3a654f43bc7fada435d6d42d4e6248f8a1 (patch) | |
tree | 4a551ad55c86c98549091d5d0d5c7d2fa480251d /doc/concepts | |
parent | 720963e2d3f4e7587398b315d42ad275378f860e (diff) | |
download | justbuild-39360f3a654f43bc7fada435d6d42d4e6248f8a1.tar.gz |
doc: Extend just serve design with 'tree of a distdir' auxiliary request
Diffstat (limited to 'doc/concepts')
-rw-r--r-- | doc/concepts/service-target-cache.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/concepts/service-target-cache.md b/doc/concepts/service-target-cache.md index 6a64baa1..c9073f27 100644 --- a/doc/concepts/service-target-cache.md +++ b/doc/concepts/service-target-cache.md @@ -205,6 +205,27 @@ those requests as well can be typically served from cache). Optionally, the client can request that `just serve` back up this tree in the CAS of the associated remote-execution endpoint. +#### Auxiliary request: tree of a distdir + +For archives we typically require the `git` blob identifier to be +given, thus the tree identifier corresponding to a distdir (i.e., +a list of distfiles) can always be computed without fetching the +actual archives. + +In order to allow `just-mr` to set up a repository description that +can build against an _absent_ distdir repository root, `just serve` +supports a request which, given a mapping of distfile names to their +content blob identifiers, returns the tree identifier of a directory +containing that list of distfiles, with the guarantee that all content +blobs are known to `just serve`. The locations they are looked for are, +in order: the local CAS, all known Git repositories (including the +local Git cache), and the CAS of the associated remote-execution endpoint. +Any blob located in a Git repository is made available in the local CAS. + +Optionally, the client can request that `just serve` back up this +tree and all the content blobs in the CAS of the associated +remote-execution endpoint. + #### Auxiliary requests: known Git objects For `just fetch` operations typically either a blob (e.g., content of |