Julia cron like event scheduler

Hello,

I’m looking for a cron like scheduler written in Julia
(something comparable to APScheduler or sched or schedule for Python)
I haven’t found it in the Julia ecosystem… but maybe someone here know a package like this.
Any help is welcome

Kind regards

2 Likes

There was a similar question on stackeoverflow, does the answer there work for you?

1 Like

Thanks @ggggggggg but I was looking for a higher level approach of the problem of scheduling events.
Being able to parse cron syntax could be a nice feature on top of that

I wrote this Julia implementation of Python sched

https://github.com/scls19fr/Sched.jl

We could probably tackle implementing more advanced scheduler (such as APSScheduler, schedule) using Julia
See https://github.com/scls19fr/Sched.jl/issues/5

1 Like

A more advanced and extensible implementation of a scheduler is now available at
https://github.com/scls19fr/ExtensibleScheduler.jl

Latest doc can be found here.

4 Likes

Hi,
A crontab-like syntax scheduler is supported in GitHub - cihga39871/JobSchedulers.jl: A Julia-based job scheduler and workload manager inspired by Slurm, PBS and Crontab. from v0.8

It also supports CPU/memory management, job dependency like Slurm and PBS.

3 Likes