Reduce default batch size to prevent memory issues with large documents

This commit is contained in:
André Duffeck
2026-03-25 14:27:37 +01:00
parent de1120210e
commit 228adbe177

View File

@@ -64,7 +64,7 @@ func DefaultConfig() *config.Config {
AckWait: 1 * time.Minute,
},
ContentExtractionSizeLimit: 20 * 1024 * 1024, // Limit content extraction to <20MB files by default
BatchSize: 500,
BatchSize: 50,
}
}