Suppose, a network of 5 nodes uses RAFT consensus protocol. The
state of the node logs is as follows:
N1: 1.1, 3.1, 3.2
N2: 1.1, 2.1
N3: 1.1
N4: 1.1, 3.1
N5: 1.1, 1.2
Where 1.2 represents the 2nd log from the 1st term. The system is
searching for a new leader.
Is there any chance that the transaction of 1.2 committed in future?
A)Yes irrespective of any node as the leader
B)Yes if N5 becomes the next leader
C) No
PLEASE GIVE PROPER EXPLANATION WITH THE ANSWER PROVIDED.
Suppose, a network of 5 nodes uses RAFT consensus protocol. The state of the node logs...