Replies: 1 comment 2 replies
-
|
"max_threads" today means "default (max) threads per pool" So this: config.good_job.queues = "ai:5;pull:2;+enqueue,pull:1;push:1;-ai,pull,enqueue,push"
config.good_job.max_threads = 5...is equivalent to: config.good_job.queues = "ai:5;pull:2;+enqueue,pull:1;push:1;-ai,pull,enqueue,push:5" #<-- adds the '5' to that last groupSo that would be 14 threads total: 5 + 2 + 1 + 1 + 5 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
By reading the README, I was unable to answer myself the following questions
If I define the following
How many threads in total will it use? Is it 5 or is it 5+2+1+1 (+5?)
How many threads will
-ai,pull,enqueue,push(any queue but ai, pull, enqueue and push) use?What is the difference between
and
Thank you
Beta Was this translation helpful? Give feedback.
All reactions