diff options
author | Florian Klink <flokli@flokli.de> | 2024-04-30T13·20+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-04-30T18·19+0000 |
commit | 360d80f62e55917bf9cd097251e4fb17f176e559 (patch) | |
tree | f582a8ac4b3c1e1f197485ecff4aa8c94774b517 | |
parent | c9d3946cb583631bc2ca4a1343f054f7ee64a626 (diff) |
feat(tvix/store): use local object_store for tvix-store daemon blobs r/8049
The sled backend doesn't perform very well with blobs in there, especially as it's not doing any chunking. Switch to the `objectstore+file://` instead, which does do CDC. Change-Id: Ic0d8836c6fc811b80c7202e3ee7f44a05a4f8dfa Reviewed-on: https://cl.tvl.fyi/c/depot/+/11554 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
-rw-r--r-- | tvix/store/src/bin/tvix-store.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index 4662cf67d53c..fa30501e78a9 100644 --- a/tvix/store/src/bin/tvix-store.rs +++ b/tvix/store/src/bin/tvix-store.rs @@ -78,7 +78,11 @@ enum Commands { #[arg(long, short = 'l')] listen_address: Option<String>, - #[arg(long, env, default_value = "sled:///var/lib/tvix-store/blobs.sled")] + #[arg( + long, + env, + default_value = "objectstore+file:///var/lib/tvix-store/blobs.object_store" + )] blob_service_addr: String, #[arg( |