Why It Is Impossible To Solve Blockchain Trilemma?

 Why It Is Impossible To Solve Blockchain Trilemma?

Abstract

In 1985, FLP theory was proposed in a paper written by Fischer, Lynch and Patterson. FLP theory proves that in a completely asynchronous distributed system, no completely asynchronous consensus protocol can tolerate even a single unannounced process death.

In 2002, Lynch and Gilbert put forward CAP theory in their paper. CAP theory proves that in a distributed system, it is impossible to achieve all three properties: consistency, availability, and partition tolerance, at the same time, while any two of these three properties can be achieved.

As a typical distributed system, FLP and CAP are also applicable to the Blockchain. Based on FLP theory and CAP theory, this paper will analyze the logical relationship between consistency, availability, partition-tolerance and the impossible triangle of the Blockchain, so as to explain why the impossible triangle of the Blockchain can’t be broken through.

1. Summary of FLP theory

In April 1985, FLP theory, demonstrated by Fischer, Lynch and Patterson, is one of the most important distributed system theories. They also won the DijkstraPaper Award, the most influential award in the field of distributed computing, for their paper on FLP theory.

FLP theory proves that in asynchronous communication system, no consensus protocol can completely solve the consensusissue in spite of one faulty process.

In a synchronous system, consensus can be achieved. Because in a synchronous system, when a process fails or a response times out, we can assume that it has crashed.

While in an asynchronous system, it is impossible to for one process to tell whether another has died or is just running very slowly. In this case, if there is a problem with any of the processes, there is no distributed algorithm that can make all non-faulty processes reach a consensus.

Due to the limitations of FLP impossibility, the consensus algorithm of most Blockchain projects presupposes that most nodes are honest and meet certain synchronization. POW assumes that 51% of the nodes are honest and have some degree of synchronization. POS and PBFT also believe that most nodes (66%) are honest.

2. Summary of CAP theory

At the Symposium on Principles of Distributed Computing (PODC) in 2000, computer scientist Eric Brewer proposed his conjecture about the consistency, availability, and partition-tolerance of distributed computing systems. In 2002, his conjecture was proved by Nancy Lynch and Seth Gilbert, two professors at the Massachusetts Institute of Technology, and was called the CAP theory.

CAP theory proves that it is impossible to provide reliable atomic consistency data when the network is partitioned, whileit is feasible to achieve any two of the three properties: consistency, availability, and partition-tolerance. In an asynchronous communication system, when no lock is used, there is no way to provide consistent data even if stale data is allowed to be returnedwhen messagesare lost. In a synchronous communication system, there is a tradeoff between consistency and availability.

2.1. Consistency

In CAP theory, consistency is limited to atomic dataobjects, which is the same as most other methods that formally define consistency services. A system that satisfies the consistency has a total order on all operations such that each operation looks as if it were completed at a single instant. This requires that all requests from the distributed system must be synchronized before operations can be performed. This is equivalent to requiring requests of the distributed share memory to act as if they were executing on a single node, responding to operations one at a time.This is the easiest consistency assurance model for users to understand, and is most convenient for those attempting to design a client application that uses distributed service.

2.2 Availability

For a distributed system to be continuously available, every request received by a non-failing node in the system must result in a response. That is, any algorithm used by the service must eventually terminate.

In the argument of CAP theory, availability is defined as two types:

1. Weak availability: it puts no bound on how long the algorithm may run before terminating, and therefore allows unbounded computation.

2. Strong availability: Even when severe network failures occur, every request must terminate.

Under weak availability conditions, the system is allowed not to guarantee response time, but the response is a must. When the system has an error, it does not guarantee the termination of the request. In the case of strong availability, the request must terminate even if a system error occurs.

2.3. Partition Tolerance

In CAP theory, partition refers to the possibility of losing arbitrarily many messages sent from one node to anotherin a network. When a network is partitioned, all messages sent from nodes in one component of the partition to nodes in another component are lost.

Partition tolerance refers to the fact that the system stillmeets the consistency and availability as defined above when a partition occurs. The atomicity requirement therefore implies that every response will be atomic, although arbitrary messages sentas part of the algorithm might not be delivered. The availability requirement implies that every node receiving a request from a client must respond, although arbitrary messages that are sent may be lost.

3. Using CAP theory to explain why the impossible triangle of the Blockchain can’t be broken through

In the field of Blockchain, security, scalability and decentralization are known as the "impossible triangle" of the Blockchain, which means that in the same Blockchain system it is impossible to achieve all three properties and meetthe high requirements at the same time.

Our basic argument is that CAP theory is true in a distributed system, and the Blockchain belongs to a distributed system, so Blockchain must abide by the CAP theory.As long as we can prove the logical relationship between consistency, availability, partition tolerance in CAP theory and the impossible triangle of the Blockchain, then we can prove that the impossible triangle of Blockchain cannot be broken through.

3.1. Consistency and Security

In the proof process of CAP theory, it is proved that it is impossible in the asynchronous network model to implement a read/write data object that guarantees both availability and consistency. We apply this conclusion and proof process to the Blockchain system.

In the network environment definedby CAP theory, we assume that there are two nodes A and B in a Blockchain system, and both A and B record the cryptocurrency balance of one address H as X1, now A and B are partitioned.

When the user initiates a transaction in the partition where node A is located, the balance in address H will change to X2. When the user queries the balance in the partition where node B is located, the balance in address H is still X1. Thus we reckon that in this Blockchain system, the inconsistency occurs in the ledge.

When inconsistency occurs in a Blockchain system, we conclude that such a Blockchain system is not secure. Under this definition, consistency is the basic premise of Blockchain system security. In other words, the security of Blockchain systems is a more stringent requirement than the consistency of distributed systems. Security >Consistency.

3.2. Availability and Scalability

The availability in CAP theory is divided into weak availability and strong availability, but both require that the system must respond to all normal requests. From a technical point of view, thatmeans to implement normal readand write.

In a Blockchain system, scalability refers to the number of transactions that can be processed per second. Technically, high scalability is to achieve high-frequency read and write operationsper second.

Logically, we can see that availability is a more fundamental network requirement than scalability. A Blockchain system that cannot achieve availability is unable to achieve scalability, that is, availability is the premise of scalability. In other words, the scalability of Blockchain systems is a more stringent requirement than the availability of distributed systems. Scalability > Availability.

3.3. Partition-tolerant and Decentralization

In CAP theory, partition is considered to be a must exist for distributed systems. Indeed, in a real distributed environment, it is impossible to guarantee that every node in the system will not fail.

As a basic feature of the Blockchain, decentralization means that the Blockchain system must be distributed, that is to say, decentralization will inevitably lead to the partition, which also means that the partition tolerance is the premise for the realization of decentralization.

3.4. Balance of existing consensus algorithms on CAP

In CAP theory, partitionis considered to be an inevitable presence of distributed systems, so it makes no sense to discuss a distributed system without partition. As a typical distributed system, the different consensus algorithms of Blockchain have balanced the consistency and availability of the system under the premise of the partition.

Tendermint: Tendermint is a POS-type consensus algorithm, which mainly includes five stages: NewHeight -> Propose ->Prevote ->Precommit ->Commit. Propose ->Prevote ->Precommit belongs to the consensus phase and is the core of the algorithm, which is called a Round. Multiple Rounds may be required on a single block for block commit confirmation. In multiple Rounds, the height of the block will not increase, only empty blocks are submitted to the system, and once a block is confirmed, it cannot be modified. So Tendermint could theoretically get stuck, which results in the block height never increasing. This means that Tendermint is more focused on consistency when there are partitions.

Casper FFG: Casper FFG is a POS-type consensus algorithm. In the design of Casper FFG, consistency is a priority because it doesn't allow checkpoints to be completed without the approval of the vast majority of verifiers, so that the block will not turn into the final confirmation state.

Algorand: Algorand is a POS-type consensus algorithm. Algorand is similar to Tendermint in the design. When there is a conflict between consistency and availability, the system tends to produce empty blocks rather thanblocks of real significance. So Algorand gives priority to consistency.

Dfinity: Dfinity is a POS-type consensus algorithm. When the network is partitioned, it automatically suspends the random beacon and does not allow any partitions in the network to continue. So Dfinity prioritizes the consistency.

POW: when the network using POW is partitioned, all partitions can produce blocks normally. When the network is restored and the partition ends, according to the longest chain principle, chains of different partitions will be merged and eventually become one chain. So POW prioritizes the availability.

POC: the full name of POC is Proof of Credit, which is innovatively used in NULS, a global open-source and community-driven project. When the network using POC is partitioned, all partitions can produce blocks normally. When the network is restored, similar to the POW, the Blockchain will be merged following the longest chain principle. Therefore, the priority of POC innovatively used by NULS is availability.

ConsensusAlgorithm

Comparison between A(Availability) and C(Consistency)

RelevantProjects

 Tendermint

 A

 Cosmos

 Casper FFG

 A

 ETH

 Algorand

 A

 Algorand

 Dfinity

 A

 Dfinity

 POW

 C

 BTC

 POC

 C

 NULS

Note: A < C represents that the consensus algorithm gives priority to Consistency;

C < A means that the consensus algorithm gives priority toAvailability;

4. Conclusion

By deducing the above logical relationships between Consistency and Security, Availability and Scalability, Partition-tolerant and Decentralization, we can draw the following conclusion:

  1. Consistency is necessary for Security
  2. Availability is necessary for Scalability
  3. Partition-tolerant is necessary for Decentralization

 

 

According to the theorem in CAP theory that it’s impossible to achieve all three properties: consistency, availability and partition tolerance, we can draw the following conclusion: under the conditions of CAP theory, security, scalability and decentralization cannot be achieved at the same time, that is, the impossible triangle of Blockchain cannot be broken through.

About the author:

Ken Huang

A well-known Blockchain expert, chief scientist of NUChain, American DistributedApps CEO, member of Blockchain Experts Committee of Chinese Institute of Electronics and NULS technical advisor.

Xiang Wenbo

Java software engineer, cryptotech-writer and NULS Core Team member. He focuses on Blockchain technology research and Blockchain solutions.

References:

Brewer's conjecture and the feasibility of consistent, available, partition-tolerant web services Seth Gilbert, Nancy Lynch

Impossibility of Distributed Consensus with One Faulty Process MICHAEL J. FISCHER, NANCY A. LYNCH, MICHAEL S. PATERSON

CAP theory for distributed systems: https://www.hollischuang.com/archives/666

Compare the Finality and Liveness of various consensus algorithms:

Https://www.odaily.com/post/5134107

Finality in Blockchain Consensus:

Https://medium.com/mechanism-labs/finality-in-Blockchain-consensus-d1f83c120a9a

Comments