Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Persistent scheduling

I'm currently in need of persistent scheduling for a web app based on play-framework and akka. I know there is actor scheduling in akka, but as far as I know, it provides no mechanism to persist jobs. So, even if pretty much everything fails, jobs have to be loaded, and executed, after a restart. The jobs are generally not going to be periodic.

What kind of system can accomplish those things, and possibly nicely integrate into the existing infrastructure (play, akka)?

like image 973
Dark Avatar asked Nov 27 '22 09:11

Dark


1 Answers

There seems to be a project capable of doing "timestamp based persistent scheduling for Akka": https://github.com/odd/akkax-scheduling

like image 101
VivaceVivo Avatar answered Feb 16 '23 22:02

VivaceVivo