Replies: 1 comment 1 reply
-
Yeah currently you have to do it one by one. It should be possible to add support for scheduling batches in the client. |
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
-
I was evaluating db-scheduler. Our use case requires generating around 20000 jobs within 1 minute and schedule them. Jobs should get processed in around 15 minutes (each job takes between 5-10 seconds).
However I am stuck at first step itself i.e. how to schedule 20000 jobs within a minute since each call to
schedulerClient.schedule
does a DB insert and they are not batched. So question is how do I schedule thousands of jobs within few seconds or a minute ?Beta Was this translation helpful? Give feedback.
All reactions