From 840430c1893e2afe8b90e29018c35f9ac63e3410 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 10 Jun 2021 15:41:19 +0200 Subject: [PATCH] :sparkles: Increment the file-change garbage collection time window. The previous value was 24 hours because the snapshot stated to consume a lot of disk space. Since we reduced snapshot generation considerably, we now can increase the gc time window to 72 hours. --- backend/src/app/main.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/main.clj b/backend/src/app/main.clj index 6ba884197..218f318e9 100644 --- a/backend/src/app/main.clj +++ b/backend/src/app/main.clj @@ -254,7 +254,7 @@ :app.tasks.file-xlog-gc/handler {:pool (ig/ref :app.db/pool) - :max-age (dt/duration {:hours 24})} + :max-age (dt/duration {:hours 72})} :app.tasks.telemetry/handler {:pool (ig/ref :app.db/pool)