From 34cba1422ccc0ad531c147de6b9087c04b989be4 Mon Sep 17 00:00:00 2001 From: Martin Tomazic Date: Tue, 29 Jul 2025 09:19:25 +0200 Subject: [PATCH] go/worker/storage/config: Use parallel chunker by default --- .changelog/6219.internal.md | 1 + go/worker/storage/config/config.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .changelog/6219.internal.md diff --git a/.changelog/6219.internal.md b/.changelog/6219.internal.md new file mode 100644 index 00000000000..332eb804b5b --- /dev/null +++ b/.changelog/6219.internal.md @@ -0,0 +1 @@ +go/worker/storage/config: Default to parallel checkpoint creation diff --git a/go/worker/storage/config/config.go b/go/worker/storage/config/config.go index d4f2c54aed9..1f2f3461257 100644 --- a/go/worker/storage/config/config.go +++ b/go/worker/storage/config/config.go @@ -55,7 +55,7 @@ func DefaultConfig() Config { Checkpointer: CheckpointerConfig{ Enabled: false, CheckInterval: 1 * time.Minute, - ParallelChunker: false, + ParallelChunker: true, }, } }