chore(tvix/castore/blob): remove sled implementation
This never did any chunking, and sled (rightfully) performs really bad if values get too large. We switched the default to using the objectstore backend with the local filesystem a while ago, no need to keep this footgun around anymore. Change-Id: I2c12672f2ea6a22e40d0cbf9161560baddd73d4a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11616 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com>
This commit is contained in:
parent
73c848a18f
commit
ebb7b32a2c
5 changed files with 3 additions and 202 deletions
|
|
@ -11,7 +11,6 @@ mod grpc;
|
|||
mod memory;
|
||||
mod naive_seeker;
|
||||
mod object_store;
|
||||
mod sled;
|
||||
|
||||
#[cfg(test)]
|
||||
pub mod tests;
|
||||
|
|
@ -22,7 +21,6 @@ pub use self::from_addr::from_addr;
|
|||
pub use self::grpc::GRPCBlobService;
|
||||
pub use self::memory::MemoryBlobService;
|
||||
pub use self::object_store::ObjectStoreBlobService;
|
||||
pub use self::sled::SledBlobService;
|
||||
|
||||
/// The base trait all BlobService services need to implement.
|
||||
/// It provides functions to check whether a given blob exists,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue