TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Will temporal.io be a single point of failure?

1 点作者 cruxcode大约 2 年前
Isn't temporal.io a single point of failure because you would wrap all your api calls inside temporal.io and if temporal.io fails, either the api call will fail or atleast the task inside it won't be scheduled? Am I understanding something wrong?

1 comment

lorendsr大约 2 年前
Your code is run in a worker process. If the worker fails, another worker will pick up where the first left off. The state of each workflow function is stored by the Temporal Cluster. The Cluster is a SPOF, but each component of it is fault tolerant and horizontally scalable, so it's a low-risk SPOF to have. In choreography, your message bus would be the SPOF, and Temporal provides much better DX than choreography.