Practical implications of large number of queues #2520
-
The docs say:
The heading ("Queues performance") implies that this is a performance limitation. Aside from Redis connection limits, what other performance implications are there for exceeding "up to a dozen" queues? If not performance, what else is implied by "unmanageable"? I'm hoping to quantify whether any of these limitations can be addressed with resourcing at the app or Redis level, or if there are universal limits. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are no performance overhead for having more queues, but if you have many of them it is just difficult to handle, as to get visibility on all your queues, how they are processing the jobs, checking for failed jobs, monitoring, etc. |
Beta Was this translation helpful? Give feedback.
There are no performance overhead for having more queues, but if you have many of them it is just difficult to handle, as to get visibility on all your queues, how they are processing the jobs, checking for failed jobs, monitoring, etc.