refactor: update totalRows and chunkSize constants for improved performance

This commit is contained in:
2026-05-09 01:49:39 -05:00
parent a8be31c18b
commit 6fa9b21b1c

View File

@@ -13,8 +13,8 @@ import (
const (
// totalRows int = 1_000_000
totalRows int = 10_000
chunkSize int = 50_000
totalRows int = 5000
chunkSize int = 500
queueSize int = 4
)