contribsys / faktory

Language-agnostic persistent background job server
https://contribsys.com/faktory/
Other
5.71k stars 228 forks source link

query on schedule jobs #390

Closed ankitAtVauld closed 1 year ago

ankitAtVauld commented 2 years ago

Are you using an old version? No

Have you checked the changelogs to see if your issue has been fixed in a later version? We seem to be on the latest version.

Issue Description:

We are scheduling like below: let at = DateTime.now().setZone("UTC").plus({ seconds: 3 }).toISO();js Job payload: {id}, { custom: { unique_until: "start" }, at }js

we notice that as the scheduled queue keeps increasing, however the number of enqueued jobs doesn't follow the rate at which the jobs are scheduled. This problem keep getting more prominent with an increasing number of scheduled jobs.

So, we would like to know if there is any throttling or rate limiting that we need to keep in mind while using the scheduling jobs. or anything else that you can suggest we look at. Our requirements are scheduling around 10K TPS for each job to enqueue after 2-3 seconds.

https://github.com/contribsys/faktory/blob/master/Changes.md https://github.com/contribsys/faktory/blob/master/Pro-Changes.md https://github.com/contribsys/faktory/blob/master/Ent-Changes.md

mperham commented 2 years ago

I don't know if Faktory will be able to keep up with that scheduled pace. The scheduler enqueues one job at a time with a network roundtrip. If you can enqueue your jobs directly rather than requiring that 3 second delay, that would be far more efficient. Can you explain the 3 second pause?

mperham commented 2 years ago

Especially if you are using a Remote Redis SaaS with Faktory Enterprise, where the latency may be 1ms or more.