Replies: 1 comment 8 replies
-
What happens if you increase concurrency to higher number? From my understanding you're enqueuing large number of jobs and your listeners takes longer time to process. can you increase concurrency to 20 or 30 and verify? |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My problem
When the producer schedule a lot of tasks, there are some tasks that are not executed in the scheduled time while using critical priority.
For example:
This task should be executed on 1613982642301 (2021-02-22T08:30:41.954) but actually, it is executed on 2021-02-22T08:47:33.072. It was later for about 16 minutes. That is so painful.
My situation
I set the
STRICT
priority mode:I enqueue tasks with the critical priority
And here one of my RqueueListeners:
How can I make sure the tasks executed on time?
Thank u so much.
Beta Was this translation helpful? Give feedback.
All reactions