Replies: 1 comment 1 reply
-
@kagkarlsson Can you please let me know |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi i am planning to use db-scheduler as a Distributed Timer. I will explain my use case. Please let me know if i can use db-scheduler for our use case.
There might 5K events per second. So each of the event has START and END Time. When the event starts a START message is thrown and when event ends the END messages. But each event might have a SLA. For example it should finish in say 5 minutes. If does not finish within a stipulated time then we need to throw an alert.
I am planning to use db-scheduler like a distributed timer. whenever a start of event message arrives we schedule a task execution. If the event end message arrives we plan to cancel the task execution. Otherwise the if it is late or does not arrive scheduler will pick up the task will execute and will generate alert message,
We are thinking this might go to 10K events per second and out of that say 1% might be delayed.
Can we db-scheduler handle this load. Any suggestions on this?
Beta Was this translation helpful? Give feedback.
All reactions