Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
11–20 of 21 posts
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#12I love the idea of DOs and I'm happy to see an OSS implementation. Would it be interesting to write about comparisons against Cloudflare Durable Object to the project README? Both for clarity and marketing reasons.
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#13It’s crazy how pretty much every tool people post to support AI systems is already in Erlang/OTP or in elixir standard libraries.
We're taking a different approach of building the best actor primitive for mainstream languages and letting people build a thin AI layer on top. We did not set out out build for AI when we started it, it was a happy accident.
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#14Really interesting to see these new compute paradigms. I haven't built anything on Durable Objects yet but I can see the appeal and I'd prefer an OSS option. SqliteDB per tenant may make sense, not sure about per actor. You really don't want to re-implement database transactions.
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#15It’s crazy how pretty much every tool people post to support AI systems is already in Erlang/OTP or in elixir standard libraries.
Yep, everyone seems to reinventing the actor model from first principles right now. We're taking a different approach of building the best actor primitive for mainstream languages and letting people build a thin AI layer on top. We did not set out out build for AI when we started it, it was a happy accident.
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#16Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#17Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#18I love the idea of DOs and I'm happy to see an OSS implementation. Would it be interesting to write about comparisons against Cloudflare Durable Object to the project README? Both for clarity and marketing reasons.
Thanks! Any questions in particular on the comparison?
By the way, Cloudflare DO is actually self-hostable with workerd to my knowledge, but it's not an out-of-box experience.
Re: Show HN: SQLite for Rivet Actors – one database per agent, tenant, or document
#19The lazy migration design is clever for the common case, but I keep getting stuck on what happens when a migration isn't just "add a column." If you need to backfill a derived field or rebuild an index across a restructured table, some unlucky user's request becomes the one that absorbs thirty seconds of migration work instead of the usual milliseconds. And you can't really pre-migrate millions of idle databases eith…
Personally I think the benefits of lazy outweigh the downside of that single 30s request, but to each their own.