Ability to run a task every few seconds
Is it possible to run a task every few seconds with ndscheduler? I see that apscheduler allows running tasks using seconds. Inspecting the ndscheduler code, it looks like that seconds are not passed to add_job.
And the scheduler wakes up every 60 seconds; my guess is this can be customized via settings
+1 for this. otherwise would be perfect
https://github.com/Nextdoor/ndscheduler/pull/59 adds support for using apscheduler interval scheduled jobs.
The ability to create them isn't exposed in the web UI, but you can programmatically add them, and they render correctly and can be manually triggered.
To use it, you specify the apscheduler trigger directly when adding a job to the scheduler.