DEV Community

Discussion on: A serverless solution to just-in-time scheduling

Collapse
 
guiyome profile image
Guillaume Égée

Step functions are probably the best way to schedule an isolated task.
However, to manage lots of scheduled events, you would create multiple step functions that are difficult to manage (unless you use a database to index them) and impossible to make evolve once created.
Using this CDK scheduler, the scheduling feature is managed by an isolated micro-service which is only responsible of its function: scheduling.