updated number of async writers to warc_parse to accomidate faster db nvme write speeds

This commit is contained in:
Joe Lothan 2026-05-25 19:41:25 -04:00
parent bfb7d8f883
commit a819dabb57

View file

@ -204,7 +204,7 @@ func main() {
}()
// Stage 3: DB writers — multiple goroutines batch writes for efficiency
const numWriters = 3
const numWriters = 8
var writerWg sync.WaitGroup
if !cfg.DryRun {
for w := 0; w < numWriters; w++ {