2022-11-26 22:16:31 +01:00
|
|
|
# //tvix/store
|
|
|
|
|
|
|
|
This contains the code hosting the tvix-store.
|
|
|
|
|
|
|
|
For the local store, Nix realizes files on the filesystem in `/nix/store` (and
|
|
|
|
maintains some metadata in a SQLite database). For "remote stores", it
|
|
|
|
communicates this metadata in NAR (Nix ARchive) and NARInfo format.
|
|
|
|
|
|
|
|
Compared to the Nix model, `tvix-store` stores data on a much more granular
|
|
|
|
level than that, which provides more deduplication possibilities, and more
|
|
|
|
granular copying.
|
|
|
|
|
|
|
|
However, enough information is preserved to still be able to render NAR and
|
2023-06-09 14:44:22 +02:00
|
|
|
NARInfo when needed.
|
2022-11-26 22:16:31 +01:00
|
|
|
|
|
|
|
## More Information
|
2023-09-21 21:32:44 +02:00
|
|
|
The store consists out of two different gRPC services, `tvix.castore.v1` for
|
|
|
|
the low-level content-addressed bits, and `tvix.store.v1` for the Nix and
|
|
|
|
`StorePath`-specific bits.
|
2022-11-26 22:16:31 +01:00
|
|
|
|
2023-09-21 21:32:44 +02:00
|
|
|
Check the `protos/` subfolder both here and in `castore` for the definition of
|
|
|
|
the exact RPC methods and messages.
|
2022-11-26 22:16:31 +01:00
|
|
|
|
|
|
|
## Interacting with the GRPC service manually
|
|
|
|
The shell environment in `//tvix` provides `evans`, which is an interactive
|
|
|
|
REPL-based gPRC client.
|
|
|
|
|
|
|
|
You can use it to connect to a `tvix-store` and call the various RPC methods.
|
|
|
|
|
|
|
|
```shell
|
2023-06-09 14:43:46 +02:00
|
|
|
$ cargo run -- daemon &
|
2022-11-26 22:16:31 +01:00
|
|
|
$ evans --host localhost --port 8000 -r repl
|
|
|
|
______
|
|
|
|
| ____|
|
|
|
|
| |__ __ __ __ _ _ __ ___
|
|
|
|
| __| \ \ / / / _. | | '_ \ / __|
|
|
|
|
| |____ \ V / | (_| | | | | | \__ \
|
|
|
|
|______| \_/ \__,_| |_| |_| |___/
|
|
|
|
|
|
|
|
more expressive universal gRPC client
|
|
|
|
|
|
|
|
|
2023-09-21 21:32:44 +02:00
|
|
|
localhost:8000> package tvix.castore.v1
|
|
|
|
tvix.castore.v1@localhost:8000> service BlobService
|
2022-11-26 22:16:31 +01:00
|
|
|
|
2023-09-21 21:32:44 +02:00
|
|
|
tvix.castore.v1.BlobService@localhost:8000> call Put --bytes-from-file
|
2022-11-26 22:16:31 +01:00
|
|
|
data (TYPE_BYTES) => /run/current-system/system
|
|
|
|
{
|
|
|
|
"digest": "KOM3/IHEx7YfInAnlJpAElYezq0Sxn9fRz7xuClwNfA="
|
|
|
|
}
|
|
|
|
|
2023-09-26 13:07:28 +02:00
|
|
|
tvix.castore.v1.BlobService@localhost:8000> call Read --bytes-as-base64
|
2022-11-26 22:16:31 +01:00
|
|
|
digest (TYPE_BYTES) => KOM3/IHEx7YfInAnlJpAElYezq0Sxn9fRz7xuClwNfA=
|
|
|
|
{
|
|
|
|
"data": "eDg2XzY0LWxpbnV4"
|
|
|
|
}
|
|
|
|
|
|
|
|
$ echo eDg2XzY0LWxpbnV4 | base64 -d
|
|
|
|
x86_64-linux
|
|
|
|
```
|
|
|
|
|
|
|
|
Thanks to `tvix-store` providing gRPC Server Reflection (with `reflection`
|
|
|
|
feature), you don't need to point `evans` to the `.proto` files.
|