Flawless – Rust 的耐用执行引擎
Flawless – Durable execution engine for Rust

原始链接: https://flawless.dev/

隆重推出 Flawless - 一种改变游戏规则的解决方案,用于创建高度复杂的用户界面,同时确保完全的耐用性和持久性。 与涉及维护大量数据库的传统模型不同,Flawless 允许开发人员利用其编程技能并使用简单语言 Rust 函数创建复杂的工作流程,从而简化了编码。 这些函数没有复杂性限制,可以编译为 Web Assembly 并在完全确定性的设置中运行。 尽管如此,在与现实世界系统交互时(例如发送 HTTP 请求),Flawless 会记录并记录每一个非确定性事件。 如果出现中断,这些事件可以通过轻松的回滚和恢复来快速恢复。 凭借其持久性功能,Flawless 消除了因浏览器意外刷新而丢失关键用户信息的风险。 通过提供完整的错误跟踪功能,Flawless 使开发人员能够立即查明问题并迅速解决。 无论是个人用途还是商业用途,那些有兴趣早期访问 Flawless 的人可以通过在线提交详细信息来加入其私人 alpha 列表。 [作者姓名] © 版权所有。

总体而言,与讨论的原始 Flawless 项目相比,Spin(上面文本材料中提到的 Fermyon 项目)似乎提供了更广泛的工具集。 根据其文档,Spin 旨在为科学计算提供可靠、可预测且值得信赖的平台,提供单节点(本地)和多节点(集群)功能。 此外,Spin 的存储库列出了使用它所需的各种依赖项,这表明其范围可能比传统编译目标更大。 此外,Spin 需要 GPG 签署对其平台的贡献承诺,强调安全措施和对完整性的关注。
相关文章

原文

Flawless is an execution engine for durable computation. It will run your code until completion even in the presence of hardware or software failure.

We aspire to allow builders to create amazing experiences for others. And the best user experiences require complex UIs holding complex state, but trying to model all the state inside your database can be challenging. At the same time, you don't want the user to lose progress by accidentally refreshing the page, making continues persistence a requirement for modern applications.

Flawless allows you to model this persistent state with just code and local variables, raising the bar when it comes to expressing complex behaviors inside applications.

Workflows in flawless are written in Rust, in fact they are just regular Rust functions. This means that they can contain arbitrary logic. But instead of native code, the functions are compiled to WebAssembly and executed in a completely deterministic environment. The only nondeterminism is introduced when interacting with the "real world", like performing HTTP requests or generating random numbers. WebAssembly requires us to explicitly handle the non-deterministic execution.

We use that knowledge to persist a log of non-deterministic side effects. This means that if the execution of a workflow is ever interrupted, we can just re-run it and catch up to the same state without the need to perform the side effects again.

workflow.rs ×

restarting ...

side effect log

>

63

64

let user = "Adele Goldberg";

deterministic

65

let comic_id: u32 = flawless::random();

side effect

66

let url = format!("https://xkcd.com/{comic_id}/");

deterministic

67

let content = flawless::http::get(url);

side effect

68

let quote = parse_comic(content);

deterministic

69

let greeting = format!("Hi {user}! // '{quote}'")

deterministic

70

Error: Execution Interrupted!
Machine unexpectedly rebooted.

Execution Completed!

...

recv msg {...}

HTTP request

send msg {...}

get clock time

_

_

_

>

▓———————————————————————————————————————————————————————————————————————————█

This makes the amount of data we need to persist minimal, and the rest is just re-calculated on-demand in case of failure. A nice side effect of this model is that the whole system is observable. We can take any finished or still running workflow and analyze the exact execution path it took to get into the current state. With a completely deterministic execution environment, impossible to reproduce bugs become a problem of the past.

Notice how flawless takes away the burden of persisting the state. You just write business logic and can be assured that all the actions are going to run until completion, even if you need to occasionally restart the server because of maintenance. Once you start the flawless engine back up, the workflows are going to seamlessly continue executing from where they stopped.

联系我们 contact @ memedata.com