What’s the downside if we don’t preserve consistency in Distributive techniques?
What’s Consistency?
Consistency is a elementary property of distributed techniques that ensures that every one replicas of a shared knowledge retailer have the identical worth. In a distributed system, knowledge is often replicated throughout a number of nodes to enhance availability and fault tolerance. Nevertheless, sustaining consistency throughout all replicas might be difficult, particularly within the presence of concurrent updates and community delays.
Inconsistency downside in distributed techniques
When a number of processes entry shared sources concurrently, the place the order of execution just isn’t deterministic, the issue arises as a result of want for sustaining consistency throughout these processes.
This problem is additional difficult by the truth that distributed techniques are inclined to varied sorts of failures, resembling message losses, community delays, and crashes, which might result in inconsistencies within the execution order.
So, tips on how to clear up this inconsistency downside in distributed techniques?
To make sure that shared sources are accessed in a constant order by consistency, there are a number of consistency fashions that can be utilized in distributed techniques. These fashions outline the extent of consistency that’s assured for shared sources within the presence of concurrent entry by a number of processes.
What’s the Consistency Mannequin?
A consistency mannequin is a algorithm or tips that decide how a distributed system ought to behave by way of the ordering and visibility of updates made to shared knowledge.
In a distributed system, the place a number of nodes can entry and modify the identical knowledge, it’s necessary to make sure that all nodes have a constant view of the information to keep away from conflicts and inconsistencies. A consistency mannequin defines the extent of consistency required for the system and specifies the mechanisms used to attain it.
Completely different consistency fashions supply completely different trade-offs between consistency and efficiency, and so they might prioritize components resembling availability, partition tolerance, or the extent of coordination required between nodes.
Following are the completely different sorts of consistency fashions:
Eventual Consistency
- Weakest type of consistency.
- This ensures excessive availability and returns the identical worth for READ requests.
- One in style instance is Cassandra – ( NoSQL, extremely obtainable ).
Causal Consistency
- Has consistency stronger than eventual consistency.
- Preserves the order of casually-related(dependent) operations.
- So, that’s why it doesn’t make sure the ordering of operations which are non-causal.
- One instance is Remark replies.
Sequential Consistency
- Stronger than causal consistency.
- Doesn’t guarantee writes are seen instantaneously or in the identical order as in response to some world block.
- One instance is that of fb posts of associates (sequential for a specific buddy, however not for total)
Strict Consistency/ Linearizability
- That is the strongest consistency mannequin.
- All learn requests are constant as they get the newest write worth
- One in style instance is password replace of somebody’s checking account.
Why to make use of sequential consistency as a consistency mannequin in distributive techniques?
Each concurrent execution of a program ought to be sure that the outcomes of the execution are to be in some sequential order. It gives an intuitive mannequin of how the distributed techniques ought to behave, which makes it simpler for customers to grasp and cause concerning the habits of the system.
Sequential Consistency:
Sequential consistency is a consistency mannequin that ensures that the order during which operations are executed by completely different processes within the system seems to be per a worldwide order of execution. It ensures that the results of any execution of a distributive system is identical as if the operations of all of the processes within the system had been executed in some sequential order, one after the opposite.
Instance of Sequential Consistency

Sequential Consistency Instance
Allow us to contemplate a distributive system right here for 4 completely different processes, P1, P2, P3, and P4. Right here, a number of completely different operations are occurring concurrently, resembling W(X, A) updating the worth of X to be A, and R(X) studying the worth of X.
Now, if we comply with the given world order of operations, we get a sequentially constant system.
W(X,A), R(X) = A, W(Y,B), R(Y) = B
With this sequential order, it is sensible that P3 reads A primary after which B in subsequent learn operations.
Strategies to implement Sequential Consistency
The next methods can be utilized to implement sequential consistency in distributed techniques:
- Two-Part Locking: Two-phase locking is a method used to make sure that concurrent entry to shared knowledge is prevented. On this approach, locks are used to manage entry to shared knowledge. Every course of acquires a lock earlier than accessing the shared knowledge. As soon as a course of acquires a lock, it holds the lock till it has accomplished its operation. Two-phase locking ensures that no two processes can entry the identical knowledge on the similar time, which might forestall inconsistencies within the knowledge.
- Timestamp Ordering: Timestamp ordering is a method used to make sure that operations are carried out in the identical order throughout all nodes. On this approach, every operation is assigned a singular timestamp. The system ensures that every one operations are carried out within the order of their timestamps. Timestamp ordering ensures that the order of operations is preserved throughout all nodes.
- Quorum-based Replication: Quorum-based replication is a method used to make sure that knowledge is replicated throughout completely different nodes. On this approach, the system ensures that every write operation is carried out on a subset of nodes. To make sure consistency, the system requires {that a} majority of nodes agree on the worth of the information. Quorum-based replication ensures that the information is replicated throughout completely different nodes, and inconsistencies within the knowledge are prevented.
- Vector Clocks: Vector clocks are a method used to make sure that operations are carried out in the identical order throughout all nodes. On this approach, every node maintains a vector clock that incorporates the timestamp of every operation carried out by the node. The system ensures that every one operations are carried out within the order of their vector clocks. Vector clocks be sure that the order of operations is preserved throughout all nodes.
Some frequent challenges in reaching Sequential Consistency
- Community Latency: Communication between completely different nodes in a distributed system can take time, and this latency can lead to inconsistencies within the knowledge.
- Node Failure: In a distributed system, nodes can fail, which may end up in knowledge inconsistencies.
- Concurrent Entry: Concurrent entry to shared knowledge can result in inconsistencies within the knowledge.
- Replication: Replication of information throughout completely different nodes can result in inconsistencies within the knowledge.
Achievement after implementing Sequential Consistency
After implementing sequential consistency in a distributed system, the system then gives a excessive stage of consistency assure for shared sources. Which means that the system ensures that the order of operations on a shared useful resource is per the order during which they had been issued by processes. In consequence, the ultimate state of the useful resource is identical as if the operations had been executed serially, despite the fact that they could have been executed concurrently by a number of processes.
Thus, this ensures that the system behaves appropriately and persistently which is basically important and demanding for a number of purposes in fields of monetary techniques and mission-critical techniques, additionally in databases of massive purposes. Thus, it ensures excessive reliability and consistency of the system.