Queue Systems. #984
mwalkersigma
started this conversation in
Ideas
Replies: 2 comments 20 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi, I'm not sure what is your request... |
Beta Was this translation helpful? Give feedback.
20 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Story:
I am now to the point where I have tens of queues ( 30 ish ), doing various tasks, and I've outgrown my hacky workaround.
I use Bull Boards as a way to give managers a means to self service errors ( Things like see why jobs failed, retry jobs etc. ).
To that end I built my own custom queue wrapper that has a system property, and if that property is set it creates a new bull board for that system so that I can give them a page with only the queues they care about added to it.
this system has worked great, but now with the amount of systems I have it takes around ten minutes to hot reload my server after a change. This is likely because each system adds around 20 routes and only having 5 systems is nearly 100 routes added to the server.
It would be awesome if I could specify System, when creating the BullMQAdapter ( along with delimiter, description, displayName etc...) and then either allows basePath/systemName or basePath?systemName=systemName so that the page only shows that systems queue. Or maybe its as simple as filtering out queues on the same home page ? Any would be acceptable!
As a follow up request if those systems could also be added to a system drop down instead of my janky solution of adding them to the miscLinks array that would be amazing !
Beta Was this translation helpful? Give feedback.
All reactions