Automattic / kue

Kue is a priority job queue backed by redis, built for node.js.
http://automattic.github.io/kue
MIT License
9.45k stars 862 forks source link

Will long processing workers block the other type of jobs being processed??? #1199

Open shinux opened 5 years ago

shinux commented 5 years ago

Sorry I'm new to kue.

Since kue is singleton instance in a node progress, and all jobs in one queue.

suppose I have two types of jobs:sms and email

if a large amount of sms jobs is processing, then willemail jobs waiting, or different types of jobs consumed by their own consumers and won't block each other ?

or should I use pm2 to start multiple kue instance to handle this situation?