Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
stsffap
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
stsffap
7mo ago
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://google.github.io/adk-docs/integrations&
2.
▲
A remote control for your agents
(restate.dev)
3 points
by
stsffap
7mo ago
|
5 comments
3.
▲
by
stsffap
7mo ago
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 options are basically restart the process and lose all progress, o
4.
▲
A Durable Coding Agent – With Modal and Restate
(restate.dev)
2 points
by
stsffap
11mo ago
|
1 comments
5.
▲
by
stsffap
11mo ago
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 you'd think for agents. When an ag
6.
▲
Keep your applications running while AWS is down
(restate.dev)
3 points
by
stsffap
11mo ago
|
1 comments
7.
▲
by
stsffap
11mo ago
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 something you architect into every line of application code. Yo
8.
▲
Control and Alt and Restate 1.5
(restate.dev)
1 points
by
stsffap
1y ago
|
1 comments
9.
▲
by
stsffap
1y ago
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 stored locally in RocksDB, no external deps needed. Better fa
10.
▲
Restate Cloud Is Open to Everyone – Build Durable Workflows and Agents Today
(restate.dev)
1 points
by
stsffap
1y ago
|
1 comments
11.
▲
by
stsffap
1y ago
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 - think "transactional guarantees for distributed code
12.
▲
Restate 1.4: We've Got Your Resiliency Covered
(restate.dev)
3 points
by
stsffap
1y ago
|
1 comments
13.
▲
by
stsffap
1y ago
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 resiliency and workload balancing, and also adds a multitude of effic
14.
▲
Restate 1.3: Concurrency without losing sleep
(restate.dev)
4 points
by
stsffap
1y ago
|
0 comments
15.
▲
by
stsffap
2y ago
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 consists of multiple service keys for which Restate ensures stri
16.
▲
by
stsffap
2y ago
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 and to follow our guide here: https://docs.restate.
17.
▲
by
stsffap
2y ago
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 challenging especially if it relies on other external systems
18.
▲
by
stsffap
2y ago
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 of a configured retry policy where you have exhausted the num
19.
▲
by
stsffap
2y ago
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 big cloud service providers from
20.
▲
by
stsffap
2y ago
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, Restate does not have any external dependenci
21.
▲
by
stsffap
2y ago
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 endpoint), you could add your own client-side encryption m
22.
▲
by
stsffap
2y ago
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 express a dataflow graph but this is something that can be adde
23.
▲
by
stsffap
2y ago
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 also handle persistence for you w/o having to deploy
24.
▲
by
stsffap
2y ago
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/cockroachdb/co
25.
▲
by
stsffap
2y ago
1. There is no maximum execution duration for a Restate workflow. Workflows can run only for a few seconds or span months with Restate. One thing to keep in mind for long-running workflows is that you might have to evolve the code over its
26.
▲
by
stsffap
2y ago
A special case is if the operation is calling another Restate service. In this case, Restate will make sure that the callee will be executed exactly once and there is no need for the user to pass an idempotency key or something similar. Onl
27.
▲
by
stsffap
2y ago
We are actively looking for feedback on what SDK to develop next. Quite a few people have voiced interest in Python so far. This will make it more likely that we might tackle this soonish. We'll keep you posted.
28.
▲
by
stsffap
3y ago
We are still sorting out which SDK to implement next. Your preference for Go and Ruby is noted. The best way to stay up to date with the next developments is the GitHub issues at the moment. Creating a public product roadmap is a good idea.
29.
▲
by
stsffap
3y ago
The 0.8 release of Restate ships many new API improvements such as deterministic promise combinators, operation timeouts, better state management, and much more. Restate now supports patching service state in case you need to repair a servi
30.
▲
Release announcement: Restate 0.8 has arrived
(restate.dev)
4 points
by
stsffap
3y ago
|
3 comments
More ›