拜占庭容错
拜占庭容错
Consensus Mechanisms
15 个参考
即使某些节点任意或恶意行为,分布式系统也能继续正常运行。BFT 协议通常假设故障节点的最大比例。
出现在 15 个白皮书章节中
Abstract
While several consensus algorithms exist for the Byzantine Generals Problem, specifically as it pertains to distributed payment systems, m...
Introduction
...continue to make progress). We then analyze the requirements on UNL overlap and Byzantine node thresholds that are sufficient to maintain these guarantees. Finally, we p...
Definition of Consensus
... or individuals. A server may be correct (following the protocol faithfully) or Byzantine (behaving arbitrarily, possibly maliciously).
**Ledger.** The ledger is the co...
Existing Consensus Algorithms
Several consensus algorithms have been proposed to solve the Byzantine Generals Problem in distributed systems. We review the most relevant approaches...
Ripple Protocol Consensus Algorithm
...he remaining servers. As long as the active servers satisfy the UNL overlap and Byzantine threshold requirements, the algorithm will reach consensus correctly. This tole...
Formal Analysis of Convergence
The correctness of RPCA depends on two conditions: the fraction of Byzantine nodes within each server's UNL, and the degree of overlap between the UNLs of d...
Unique Node Lists
...selection are derived from the safety analysis. Two conditions must hold:
1. **Byzantine threshold:** Fewer than 20% of the nodes in any server's UNL should be Byzantin...
Simulation Code
...idation. The simulation framework allows precise control over network topology, Byzantine behavior patterns, message latency distributions, and UNL configurations.
The ...
Discussion
...cipants. RPCA requires that servers choose UNLs with sufficient overlap and low Byzantine fractions — assumptions that involve trust in the competence and honesty of spe...
Conclusion
...sus in a matter of seconds while maintaining provable safety guarantees against Byzantine failures.
The formal analysis demonstrates that the algorithm's correctness de...
References
Lamport, L., Shostak, R., and Pease, M. (1982). "The Byzantine Generals Problem." *ACM Transactions on Programming Languages and Systems*, 4(3...
Abstract
...de a Proof of Stake consensus algorithm, PoH can reduce messaging overhead in a Byzantine Fault Tolerant replicated state machine, resulting in sub-second finality times...
Outline
...rates with a Proof of Stake consensus algorithm. The consensus mechanism, Tower BFT, uses PoH as a cryptographic clock to implement time-based lockouts that grow e...
Proof of Stake Consensus
Solana uses a Proof of Stake consensus mechanism called Tower BFT that is specifically designed to leverage the temporal guarantees provided by P...
Conclusion
...f the architecture produces a system with several distinctive properties. Tower BFT provides fast finality through exponentially increasing lockouts anchored to ve...
相关文章
Whitepaper Deep Dive
Polkadot 白皮书:异构分片与共享安全
Gavin Wood的多链框架愿景:parachain通过relay chain共享安全性,并通过XCMP实现跨链通信。
Whitepaper Deep DiveCosmos 白皮书:通过 IBC 实现区块链互联网
Tendermint共识和Hub-and-Zones架构如何让主权区块链通过Inter-Blockchain Communication协议实现互操作。
Whitepaper Deep DiveAvalanche 白皮书:Snow 协议与亚秒级最终性
Snow系列共识协议如何通过对网络进行反复随机采样,在不到一秒内实现概率性最终确认。
Whitepaper Deep DiveAptos 白皮书:Block-STM 与 Move 虚拟机
Aptos如何通过Block-STM实现并行交易执行,以及Move编程语言的资源模型为何能防止常见的smart contract漏洞。