feat(tvix/store): Sled{PathInfo,Directory}Service -> Redb…
Use redb instead of sled for the default filesystem implementation of PathInfoService and DirectoryService. In the future we'll also drop sled support completely. Change-Id: I513ff0c2ff953d59714aa50b9aa1301b02f53d40 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12085 Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
26129c1761
commit
480a8106cf
3 changed files with 4 additions and 5 deletions
|
|
@ -41,11 +41,11 @@ pub struct ServiceUrls {
|
|||
#[arg(
|
||||
long,
|
||||
env,
|
||||
default_value = "sled:///var/lib/tvix-store/directories.sled"
|
||||
default_value = "redb:///var/lib/tvix-store/directories.redb"
|
||||
)]
|
||||
directory_service_addr: String,
|
||||
|
||||
#[arg(long, env, default_value = "sled:///var/lib/tvix-store/pathinfo.sled")]
|
||||
#[arg(long, env, default_value = "redb:///var/lib/tvix-store/pathinfo.redb")]
|
||||
path_info_service_addr: String,
|
||||
|
||||
/// Path to a TOML file describing the way the services should be composed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue