From 616fa4476f93e1782e68dc713e9e8cb77a426c7d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 11 May 2023 15:49:01 +0300 Subject: refactor(tvix/store): remove ChunkService Whether chunking is involved or not, is an implementation detail of each Blobstore. Consumers of a whole blob shouldn't need to worry about that. It currently is not visible in the gRPC interface either. It shouldn't bleed into everything. Let the BlobService trait provide `open_read` and `open_write` methods, which return handles providing io::Read or io::Write, and leave the details up to the implementation. This means, our custom BlobReader module can go away, and all the chunking bits in there, too. In the future, we might still want to add more chunking-aware syncing, but as a syncing strategy some stores can expose, not as a fundamental protocol component. This currently needs "SyncReadIntoAsyncRead", taken and vendored in from https://github.com/tokio-rs/tokio/pull/5669. It provides a AsyncRead for a sync Read, which is necessary to connect our (sync) BlobReader interface to a GRPC server implementation. As an alternative, we could also make the BlobReader itself async, and let consumers of the trait (EvalIO) deal with the async-ness, but this is less of a change for now. In terms of vendoring, I initially tried to move our tokio crate to these commits, but ended up in version incompatibilities, so let's vendor it in for now. Change-Id: I5969ebbc4c0e1ceece47981be3b9e7cfb3f59ad0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8551 Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/Cargo.nix | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'tvix/Cargo.nix') diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 51fd06a7c2..3b744136cb 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -1933,16 +1933,6 @@ rec { "The Rust-Crypto Project Developers" ]; - }; - "fastcdc" = rec { - crateName = "fastcdc"; - version = "3.0.3"; - edition = "2018"; - sha256 = "0ykqz1wrzhspn41af7kfbklgqha2ry2m7csw8kdcy6k05sdhy08h"; - authors = [ - "Nathan Fiedler " - ]; - }; "fastrand" = rec { crateName = "fastrand"; @@ -8005,6 +7995,10 @@ rec { packageId = "blake3"; features = [ "rayon" "std" ]; } + { + name = "bytes"; + packageId = "bytes"; + } { name = "clap"; packageId = "clap 4.2.7"; @@ -8019,8 +8013,8 @@ rec { packageId = "data-encoding"; } { - name = "fastcdc"; - packageId = "fastcdc"; + name = "futures"; + packageId = "futures"; } { name = "lazy_static"; -- cgit 1.4.1