Advice on concurrency value #2412
Rory-Powell
started this conversation in
General
Replies: 1 comment 1 reply
-
The best is actually to make some tests to find out a sweet spot. Normally jobs that are just IO intensive can be parallelized a lot in NodeJS, so having a high concurrency like 300 is not unusual, but if the jobs are more CPU intensive you would probably lower this value a lot and maybe even use sandboxed processors where the jobs will run in separate OS processes. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any advice on what to set the concurrency to when using
queue.process()
? i.e.Beta Was this translation helpful? Give feedback.
All reactions