Replies: 1 comment
-
Hi, it is probably not related to bull-board (as you've mentioned). Maybe it is related to some connection limitation? Bull-board doesn't related to the worker at all, so the only thing that makes sense is some connection (to redis) limitation. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I understand that bull-board is only reading data from Redis so I assume that what is causing my queued job's not to start can't be a bull-board issue, but still hoping to find some insight there on what it could be the actual problem. I'm currently building an IMAP processor for iCloud mail because Apple's is so lame at processing rules. I'm only testing so there is not much load, but still I can repeatably start and stop the dashboard (all running locally on my beefy MacBook M3) and observe that some jobs will not start when bull-board is running. What is weird is I get no error I can find, just nothing in my log showing anything happened.
My code is very simple. It's just what I have. below. What will happen is that in my
new Worker(...
code, I get the message about "about to process email", but then no log entry from insideawait processEmail
. I'm setting the jobId with a guid so I know it's not rejected as a duplicate job, but still don't get how this can happen (again, only when bull-board is running).Two questions as a BullMQ/bull-board newby. 1) is this a good place for this discussion? 2) if not, what's a better place? I hate to create an issue on bullmq because it's hard to make it 100% repeatable, and .. I'm a newby here.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions