Live data from Hacker News

Show HN: Inngest 1.0 – Open-source durable workflows on every platform

inngest.com

21–30 of 55 posts

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#21
post #8

Used this for a short while and the dev experience was great (the console in particular which allowed for copying events to reproduce them locally). The typescript integration was good. My only issue was that the execution of an inngest function wasn't completely intuitive, at least in TS, and you have to think in terms of inngest or, more precisely, the abstraction it is providing. Is it an actor, a step function, a…

> My only issue was that the execution of an inngest function wasn't completely intuitive, at least in TS, and you have to think in terms of inngest or, more precisely, the abstraction it is providing. Is it an actor, a step function, an event consumer, a saga? or a combination of some? I'm personally curious about this. I'm not saying you don't, but why would you need to understand what kind of abstraction it is bey…

Because code doesn't execute as you might think it does, which is why Inngest has docs describing best practices.

You have to be careful about how you structure effectful code and how you might share data between steps, and you have to understand when that code might be executed, so the more you know about that, the better. Inngest itself, at least with Vercel, doesn't do its own compute.

Inngest, as far as I know, does not do its own compute, it piggybacks on your own, so if you're not careful you can go hard with inngest but you'll see the impact on your hosting bill; especially with Vercel.

Inngest is a breath of fresh air but, you know, you have to audit your dependencies whether they're SaaS or not. Know how they work, know how to debug them, know how much they'll cost you.

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#22

Congrats, definitely an area we're always examining tools Afaict, this seems like a more restrictively licensed & less capable alternative to Dagster and Prefect. However, there may be some specific areas it is ahead -- the multitenancy bullet point sounds interesting, for example. Maybe you can share a comparative description?

[deleted]

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#26

Congrats this is huge! I've been in the market looking for a tool like this and was curious to know how this compares against toolings such as Temporal ( https://temporal.io/product ) or Trigger.dev( https://trigger.dev/ ) ?

Answered this in depth here: https://news.ycombinator.com/item?id=41605220

The TL;DR is both us and Temporal help with durable execution. We layer on events and a differing DX to make things easier, faster, and to also work on serverless if people need.

I can't speak to Trigger, as they've changed a lot since I last looked. It doesn't look like they do durable execution, workflows, steps, or events — it looks like they're an alternative to Lambda + SQS for TS only, so very different — more for your simple "run one thing in the background", from what I can gather. Take this with a grain of salt, though!

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#27

Looking at the License - This is not Open Source, but rather Source Available software. Looks great but do not appreciate deceptive marketing

Agree. This is absolutely deceptive. It's too bad how the OSS moniker is being misused these days...

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#28
post #15

Looking at the License - This is not Open Source, but rather Source Available software. Looks great but do not appreciate deceptive marketing

And it seems their misnomer is practically everywhere, not just in the Show HN: their website also mislabels their links as "Open Source" - I guess trying to capitalize on SEO SSPLv1 for anyone similarly interested https://github.com/inngest/inngest/blob/v1.0.0/LICENSE.md Seems they had a change of heart around 2022: https://github.com/inngest/inngest/pull/81 but they actually only started lying about the license in…

And the production infra for running isn't even available, just a pared down "development server" via SSPL. This is a long way from OSS.

Re: Show HN: Inngest 1.0 – Open-source durable workflows on every platform

#29
post #15

Earlier quoted context omitted.

And it seems their misnomer is practically everywhere, not just in the Show HN: their website also mislabels their links as "Open Source" - I guess trying to capitalize on SEO SSPLv1 for anyone similarly interested https://github.com/inngest/inngest/blob/v1.0.0/LICENSE.md Seems they had a change of heart around 2022: https://github.com/inngest/inngest/pull/81 but they actually only started lying about the license in…

And the production infra for running isn't even available, just a pared down "development server" via SSPL. This is a long way from OSS.

Well, my experience has been closer to the "more eyes make for shallow bugs" school of thought, so opening the source to contributions would actually help that process, not hinder it

I've written quite a lot of CI for projects because it's something I believe in and am willing to roll up my sleeves to get done (as a concrete example). I believe strongly that being able to reference the canonical CI build helps contributors since they can see how it's built for different systems and also ensure they don't submit "works on my machine" patches

Post reply on HN