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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Distributed Vs. Fault Tolerant Systems

4 点作者 bnmrrs超过 15 年前

2 条评论

evgen超过 15 年前
Stump's three criteria for a distributed system has a partial-truth in it that might confuse people (and perhaps he himself is confused.) A distributed system can work just fine if there is a master, as long as the system does not rely upon that node always remaining the master and/or has no way to elect a new master if the old master can no longer connect to a quorum of the nodes in the system. Whenever you see nodes described as the "master" this is usually a strong indicator that the system is not really a distributed system, but you have to dig a bit deeper to make sure.
pashields超过 15 年前
"Distributed systems" is not a new term. Please don't use it as though it only applies to systems designed to distribute data (ala NoSQL). Distributed computing has classically been focused on the use of network nodes for both data storage and computation. See: MPI, Linda, etc.