Replies: 1 comment
-
I will answer with the same I did on gitter for reference: |
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 have build repeatable job which repeats each minute. When I run it in a single instance of application, everything happen as expected. There is 1 worker per queue and 1 job per queue, so when processing is longer then 1 min, next repeat waits until current is completed.
But when I run multiple instances of applications, there is no waiting of completion of current one. Which is expected, because there are 1 worker per instance.
It is important for me that workers wait until completion of current execution. Is there a way to solve the issue?
I use bull v3
Beta Was this translation helpful? Give feedback.
All reactions