Hacker News new | ask | show | jobs
by mani-smhack 3135 days ago
I need a scheduler where i can dynamically ( via api ) schedule a job , with the admin UI to manage the jobs .

I Think these are not part of application development and it can be offloaded to hosted services .

2 comments

There are a lot of frameworks for this in various languages, depends on what you're doing - like sidekiq in ruby and hangfire in dotnet

https://github.com/mperham/sidekiq https://www.hangfire.io/

Jenkins has scheduled jobs and an UI. It can also be accessed via API. https://jenkins.io/
This is not with respect to devops or build .

My app has schedule functionality for example a scheduled report , so if it where like a webhook call then i dont want to waste the cpu cycle ,now i am using quartz scheduler in my java app .

Jenkins isn't just for devops or build.