From 0e229dc80ba318888fa56180382992eb0ebf2773 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Wed, 8 Nov 2023 07:29:21 +1100 Subject: [PATCH] lower backfill_max_hours_ago so we aren't backfilling 6 months of chat logs --- docker-compose.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.jsonnet b/docker-compose.jsonnet index c2743f7..48dfa02 100644 --- a/docker-compose.jsonnet +++ b/docker-compose.jsonnet @@ -182,7 +182,7 @@ // Max hours ago to backfill, ie. do not backfill for times before this many hours ago. // Set to null to disable. - backfill_max_hours_ago:: 24 * 30 * 6, // approx 6 months + backfill_max_hours_ago:: 24 * 14, // 2 weeks, to avoid excessive backfill of old chat logs // Extra directories (besides segments) to backfill backfill_dirs:: ["emotes"],