Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
stayingalive.vessels.tech
Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
1–9 of 9 posts
Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#2Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#3I'm afraid I don't understand the purpose of this. Are there servers that die if you don't hit their URLs periodically? I use uptimerobot for my servers but it serves a different purpose.
A hack to keep your function warm is to call it via cron or a service like this.
Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#4Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#5Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#6If you need to keep your function "warm," why are you using FaaS in the first place? This almost seems like serverless satire!
Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#7I had the same problem when I first launched https://dndemail.com. Traffic was low and if no one uses the service for an hour or so, the first load in the app was slow.
I built a once a minute Cron to keep the app warm and initial requests quick.
Now I have enough traffic that I don't worry about the problem.
Re: Show HN: Sick of running random cron jobs, I built a small Keepalive for my FaaS
#8If you need to keep your function "warm," why are you using FaaS in the first place? This almost seems like serverless satire!
I don’t understand this either. What’s the point of going serverless with something like Lambda if you’re treating it like a regular old EC2 instance with more overhead? Is it cheaper or something?