Live data from Hacker News

Deno Cron

deno.com

21–30 of 190 posts

Re: Deno Cron

#21
post #17

My first question when I am considering a product like this is how can I get an email when there's an error in my application. Why isn't that in the top level feature list of everything like this, or am I unusual in thinking that this is an essential feature of any hosting system?

Some hosting systems may support that out of the box but I don't know what they are. Typically you would use metrics, monitors and alerts and create a notification alert based on certain conditions. No reason they couldn't provide some out of the box, but it's not common. At the very least it would need to stop after a short number of alerts or they'd end up spamming customers if it crashes on a loop

Re: Deno Cron

#23
post #17

My first question when I am considering a product like this is how can I get an email when there's an error in my application. Why isn't that in the top level feature list of everything like this, or am I unusual in thinking that this is an essential feature of any hosting system?

I've started tossing https://ntfy.sh/ alerts into my Deno apps to get push notifications for things I'm interested in

Re: Deno Cron

#24
post #7
post #2

hey, andy from the deno team here. we're really excited to land this. happy to answer any questions or pass questions along to the team!

how does it works on self-hosted environment?

We're gathering more feedback for supporting self-hosted cron environment. Can you describe how you would use it?

Re: Deno Cron

#25
post #23
post #17

My first question when I am considering a product like this is how can I get an email when there's an error in my application. Why isn't that in the top level feature list of everything like this, or am I unusual in thinking that this is an essential feature of any hosting system?

I've started tossing https://ntfy.sh/ alerts into my Deno apps to get push notifications for things I'm interested in

My wife has had good luck using Pushover [1], which seems similar. I wonder how these services compare?

[1] https://pushover.net/

Re: Deno Cron

#26
post #6

Earlier quoted context omitted.

Any plans for an SQL db service?

we've gotten a bunch of interest for this and the team is discussing it :)

Personally I would stay within your niche and focus on documentation, guides, and outreach to convert more people to your stack. A few simple but very reliable easy solutions is better than a lot of not great solutions.

Re: Deno Cron

#27

Nice, I was just wondering if there was an opportunity for a product similar to vercel for batch jobs. This isn't quite that but close. From my experience there 5 main components for larger scale system. - Request server - database - queue - background worker - offline batch jobs I feel like so far serverless has the first 3 fairly well developed but the last two are still underdeveloped. But maybe I'm just not aware…

This is pretty much what Inngest is (https://www.inngest.com/). Runs on Deno as well.

Re: Deno Cron

#28

Nice, I was just wondering if there was an opportunity for a product similar to vercel for batch jobs. This isn't quite that but close. From my experience there 5 main components for larger scale system. - Request server - database - queue - background worker - offline batch jobs I feel like so far serverless has the first 3 fairly well developed but the last two are still underdeveloped. But maybe I'm just not aware…

EventBridge + Lambda or ECS gets you pretty far for the last two imo

But then you need to set it up. On small fast moving teams having something that just works from the code is a massive win and I'd rather not cross the infra/code barrier.

Re: Deno Cron

#29
post #23

Earlier quoted context omitted.

I've started tossing https://ntfy.sh/ alerts into my Deno apps to get push notifications for things I'm interested in

My wife has had good luck using Pushover [1], which seems similar. I wonder how these services compare? [1] https://pushover.net/

Pushover looks very similar to Ntfy, but I haven't tried it yet.

Re: Deno Cron

#30
post #2

hey, andy from the deno team here. we're really excited to land this. happy to answer any questions or pass questions along to the team!

Is the spikiness of cron schedules going to cause you operational problems? You're going to end up with a _lot_ of jobs scheduled at "0 0 * * *".
Post reply on HN