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 428f69416f
commit 71c0a469b9

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,
}
}