Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
291–300 of 336 posts
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#292Can someone please enlighten me on what is the purpose of using an external Cron runner here? If I need to run the same job(s) for a long time, wouldn't it be simpler and cheaper to run a basic $5 VM on something like Linode?
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#293Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#294Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#295There is no way you can do that reliably without a K8S multi-cloud cluster.
Not just a multi-cloud, but also managed kafka and a managed db across a multi-region deployment. Regions can fail, your job needs persistence and you need to maintain the state of the message in the db.. oh!! have you also thought about the right queue semantics? Do you want your job to trigger exactly one, at least one or at most once? What happens if the previous job is still running when it is time to trigger it…
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#296> It is 2022, so I had thought it would be tremendously easy and cheap, but it seems no solution is easily implemented. You assume someone purchased hardware (preferably available anywhere on the planet), powered it up, set it up, connected it to the internet, then built the software to handle your very specific task, then put it online to do specifically what you want and for a close-to-free price? And you're shocke…
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#297GCP Cloud Run with a schedule set to call the HTTP endpoint once an hour. Cloud Run will run any docker image, and give it a HTTPS URL. Scales to zero, allows running in the background for up to an hour. The benefit over FAAS is that you can run anything you want in the container, including multiple processes.
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#298https://learn.microsoft.com/en-us/azure/azure-functions/func...