I'm not sure what you mean when you say there is no easy solution... procure a small vm on Linode or your choice of provider for like $20/mo. SSH into it, set up the crontab to run your web scraping script. I could literally have that set up and running in 15 minutes flat. EDIT: after reading the other solutions in this thread I'm blown away by how much people are over thinking and over engineering this. KISS people.
It's reasonable to call this the "easiest" way. It's certainly not the "cheapest, easiest" way, which is what the poster asked for. Many of the other options listed in this thread are free or within a rounding error of free. Some of them equally are not the "cheapest, easiest" because they're complex. But some of them pretty clearly meet both criteria (GitHub Actions comes to mind), and some of them might meet the cr…
Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
151–160 of 336 posts
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#152I'm not sure what you mean when you say there is no easy solution... procure a small vm on Linode or your choice of provider for like $20/mo. SSH into it, set up the crontab to run your web scraping script. I could literally have that set up and running in 15 minutes flat. EDIT: after reading the other solutions in this thread I'm blown away by how much people are over thinking and over engineering this. KISS people.
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#153It amazes me that for such a relatively simple thing everyone's knee jerk response is THE CLOUD!
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#154Earlier quoted context omitted.
It's reasonable to call this the "easiest" way. It's certainly not the "cheapest, easiest" way, which is what the poster asked for. Many of the other options listed in this thread are free or within a rounding error of free. Some of them equally are not the "cheapest, easiest" because they're complex. But some of them pretty clearly meet both criteria (GitHub Actions comes to mind), and some of them might meet the cr…
The way I look at it: If you have an existing VPS already hosting things (and what geek doesn't?) then adding a cronjob to that host incrementally costs essentially $0 and is pretty much the easiest thing you can do.
If you have a VPS, I agree, adding a cronjob to it is both cheap and easy. But it's silly to assume that anybody who is a geek has a VPS already.
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#155How cheap can you run this cron job, the basics:
- 8,765 invocations a year
- Lambda: $0.20 per 1M requests
- Cloudwatch Events: $1.00 per 1M requests
$1.2 / 1,000,000 * 8,765 = About 1 cent
Is anybody going to host that as a service for this price? Absolutely not.
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#156Hey, this is still a WIP, but I'm building [redacted]. We wrap an open-source workflow orchestrator Temporal that offers "durable execution" with very detailed execution tracing and a bunch of recovery mechanisms. We offer a fully-managed Temporal cluster, hosted runtime (so you don't need to worry about provisioning/scaling workers), and offer version control integrations, CI/CD and dynamic config out of the box - s…
Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#157Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#158Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#159Re: Ask HN: What is the cheapest, easiest way to host a cronjob in 2022?
#160One of the cheaper options and probably one of the older options.