Periodic message accumulation in redis #244
Unanswered
mbanaszkiewicz-vonage
asked this question in
Q&A
Replies: 2 comments 1 reply
-
Thanks for bringing this discussion.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
What’s your concurrency setting for this queue? When you’ve large number of messages you would also need higher concurrency? can you try setting? rqueue.scheduler.scheduled.message.time.interval to 100 |
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
-
My use case - periodic job distribution over multiple ECS app instances:
I wanted to experiment (see below demo repo with spring boot app), at app startup I'm creating a periodic message, scheduled to run every 5s, with constant message id. I've noticed that each 5s a new entry is created in redis:
__rq::queue::{my-delay-queue}::MSG_ID::sch::1729507117728
, with ttl of 30mins. I've tried to utilizemessage.durability.in-terminal-state=0
/job.enabled=false
/job.durability
(seeapplication.yml
) but it doesn't seem to do anything in that case.Steps to reproduce:
Beta Was this translation helpful? Give feedback.
All reactions