←back to thread

528 points sealeck | 1 comments | | HN request time: 0s | source
Show context
st3fan ◴[] No.31391017[source]
For me the missing bit in Fly is scheduled tasks. I know how to solve this by spinning up an app that runs permanently as a scheduler, but basic cron-like scheduling should be part of the platform IMO. All other FaaS-like service do this.
replies(1): >>31391035 #
tptacek ◴[] No.31391035[source]
I'd love to do this, if for no other reason than I hate working with cron. What would you use it for? What would the ideal version of this feature look like for you? What kind of apps would you be more easily able to ship? Is it mostly so you wouldn't need to keep a single tiny running VM sitting around running cron?
replies(4): >>31391264 #>>31391274 #>>31391522 #>>31391997 #
1. DizzyDoo ◴[] No.31391274[source]
The sort of things I have had running on a schedule (using Celery[0] or something like it) are sending a set of emails at a certain time, running a report or generating the data for reports, even running a backup of some data.

[0] - https://docs.celeryq.dev/en/stable/userguide/periodic-tasks....