Replies: 3 comments 1 reply
-
Normally you do not need to modify this parameter, so the question is how are your process functions implemented so that they end stalling jobs in the first place? |
Beta Was this translation helpful? Give feedback.
1 reply
-
In general, keeping the event loop busy in nodejs is not a good thing. You can break the array iteration into small chunks and return the code execution to the event loop in between using await for example. |
Beta Was this translation helpful? Give feedback.
0 replies
-
did you figure it out? |
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
-
Hi,
I am trying to use stalledInterval settings to prevent from a process to be stalled in the default time.
It seems like nothing I do affect the job to get to on stalled.
Can I get an example of a function that does work?
Beta Was this translation helpful? Give feedback.
All reactions