Cron in production is a double-edged sword
orchestrate.io
Cron in production is a double-edged sword
1–10 of 58 posts
Re: Cron in production is a double-edged sword
#2Re: Cron in production is a double-edged sword
#3Re: Cron in production is a double-edged sword
#4Re: Cron in production is a double-edged sword
#5TempleOS is designed like a C64.
I don't see cron as useful for a C64 user.
Re: Cron in production is a double-edged sword
#6I've been using Dead Man's Snitch[0] in production for a few years. It's been a life saver. Not affiliated, just a happy customer. [0] https://deadmanssnitch.com/
I also end up creating a lot of Twilio scripts which are either positive control or negative control for the call/SMS, depending on how critical the thing is that I'm monitoring. For example, one of my sites updates an /api/healthcheck result with a timestamp every five minutes if everything is going peachy, and another box polling that endpoint blows up my phone if it fails to get HTTP 200 and a timestamp within the last five minutes. (This works, but I swear I need to tweak it just a wee bit, as today I had my once quarterly woken-up-at-4-AM-because-gremlins-ate-a-single-HTTP-request.)
Re: Cron in production is a double-edged sword
#7These all seem like issues you'd run into with any task scheduler. Error emails, overloading a central resource with many tasks. Most of these aren't particular/limited to cron at all.
Also: /home/on_a_phone/parse_today.sh `date +%Y%m%d`
Will fail catastrophically because cron treats '%' as a newline character for some silly reason. Have fun troubleshooting that one!
Side note - clean your damn leap second crons, Steve!
Re: Cron in production is a double-edged sword
#8Chronos is the only one I'm aware of, but I don't believe it supports event based tasks.
Re: Cron in production is a double-edged sword
#9Is there any good open source distributed scheduler that blends both timer based tasks and event based tasks? Chronos is the only one I'm aware of, but I don't believe it supports event based tasks.