bump up workers and poll duration

This commit is contained in:
Andre Medeiros 2021-07-08 20:44:12 -04:00
parent abf8823cf1
commit 4d2554fba6

View file

@ -27,7 +27,7 @@ import (
) )
const ( const (
pollDuration = 100 * time.Millisecond pollDuration = 10 * time.Millisecond
backoff = 5 backoff = 5
rate = 0.1 rate = 0.1
) )
@ -125,7 +125,7 @@ func main() {
panic(err) panic(err)
} }
numConsumers := runtime.NumCPU() * 8 numConsumers := runtime.NumCPU() * 12
prefetchLimit := int64(numConsumers * 8) prefetchLimit := int64(numConsumers * 8)
if err := queue.StartConsuming(prefetchLimit, pollDuration); err != nil { if err := queue.StartConsuming(prefetchLimit, pollDuration); err != nil {