Viewing profile — stsffap
stsffap
HN member- Joined
- Tue, Jan 27, 2015, 11:39 PM UTC
- HN karma
- 103
- Public activity
- 59 items
- HN profile
- View on Hacker News ↗
About stsffap
No profile information was provided.
Recent public activity
-
comment
Comment #47047124
ADK is great framework for building agents as it is runtime agnostic and you can choose which properties are important to you. You can run your ADK agents also on Restate ( https:/…
-
comment
Comment #47046120
Hey HN, I work on Restate. We kept seeing the same problem with AI agents in production: you can observe them (traces, logs, dashboards), but when something goes wrong, your option…
- story
-
comment
Comment #45798968
We built this to explore what it takes to move a coding agent from "works on my laptop" to "handles millions of users in production." The core insight: durability matters more than…
- story
-
comment
Comment #45665918
Author here. AWS’s recent us-east-1 outage inspired us to share our approach to geo-replication with Restate. The core idea: geo-replication should be a deployment concern, not som…
- story
-
comment
Comment #45444000
Restate 1.5 adds some nice QoL improvements for durable execution: Observability: Full execution history with live timelines showing retries, nested calls, and state changes. All s…
- story
-
comment
Comment #45430793
Restate Cloud is now publicly available with usage-based pricing (free tier: 50k actions/month, no CC required). Restate provides durable execution for workflows and AI agents - th…
- story
-
comment
Comment #44459314
We’re excited to announce Restate v1.4, a significant update for developers and operators building and supporting resilient applications. The new release improves cluster resilienc…
- story
-
comment
Comment #43646760
[flagged]
- story
-
comment
Comment #43116733
If events need to be processed in strict order across different partitions, then you need to send these events to a single key (and thereby to a single partition). A partition cons…
-
comment
Comment #43115599
Hi everyone, I am helping building Restate. If you want to try out deploying a distributed Restate cluster, then you can do this with only a few commands. All you need is Docker an…
-
comment
Comment #43115545
We also put a lot of energy into making operations of Restate as simple as possible. We learned it the hard way when building Apache Flink that operating a distributed system is ch…
-
comment
Comment #42815148
By default, failing ctx.run() calls (like the accountService call) will be retried indefinitely until they succeed unless you have configured a retry policy for them. In the case o…
-
comment
Comment #40666509
We tried to design the additional usage grant ( https://github.com/restatedev/restate/blob/39f34753be0e27af8... ) as permissive as possible. Our intention is to only prevent the bi…
-
comment
Comment #40663611
We will create a more detailed comparison to Temporal shortly. Until then @sewen gave a nice summarizing comparison here: https://news.ycombinator.com/item?id=40660568 . And yes, R…
-
comment
Comment #40663549
Currently, Restate does not support this functionality out of the box. Since Restate does not need access to input/output messages or state (it ships it as bytes to the service end…
-
comment
Comment #40662687
While Restate is not optimized for analytical workloads it should be fast enough to also use it for simpler analytical workloads. Admittedly, it currently lacks a fluent API to exp…
-
comment
Comment #40662372
From a quick glance at what JobRunr does (especially running asynchronous/delayed background tasks), it seems that Restate would be a very good fit for it as well. Restate will als…
-
comment
Comment #40661157
Restate is built as a sharded replicated state machine similar to how TiKV ( https://tikv.org/ ), Kudu ( https://kudu.apache.org/kudu.pdf ) or CockroachDB ( https://github.com/cock…