From 46657a7f7476bd0dc957b8e8c7acd4c3712d2adf Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Sat, 9 Nov 2024 19:11:10 +0100 Subject: [PATCH] fix(tvix-cache): Turn down the log vomit, and increase the limit of file handles --- machines/storage01/tvix-cache/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/storage01/tvix-cache/default.nix b/machines/storage01/tvix-cache/default.nix index 97447c2..d93aa61 100644 --- a/machines/storage01/tvix-cache/default.nix +++ b/machines/storage01/tvix-cache/default.nix @@ -135,10 +135,11 @@ in systemd.services."tvix-store" = { wantedBy = [ "multi-user.target" ]; environment = { - RUST_LOG = "debug"; + RUST_LOG = "info"; }; serviceConfig = { UMask = "007"; + LimitNOFILE = 1048576; ExecStart = "${package}/bin/multitier-tvix-cache --endpoints-config ${toml.endpoints} --store-composition ${toml.composition}"; StateDirectory = "tvix-store"; RuntimeDirectory = "tvix-store";