From 39e3bfbca18ccf1b1e3fe71becf9d8eb6304b78a Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Sat, 30 Nov 2024 20:06:31 -0400 Subject: [PATCH] [cassandra] Change compaction window default to 2hrs (#6282) Address https://github.com/jaegertracing/jaeger/issues/5797#issuecomment-2509176512 Signed-off-by: Yuri Shkuro --- pkg/cassandra/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cassandra/config/config.go b/pkg/cassandra/config/config.go index ea4e839a519..d5e499a2523 100644 --- a/pkg/cassandra/config/config.go +++ b/pkg/cassandra/config/config.go @@ -103,7 +103,7 @@ func DefaultConfiguration() Configuration { TraceTTL: 2 * 24 * time.Hour, DependenciesTTL: 2 * 24 * time.Hour, ReplicationFactor: 1, - CompactionWindow: time.Minute, + CompactionWindow: 2 * time.Hour, }, Connection: Connection{ Servers: []string{"127.0.0.1"},