By possessing a record system replicated, if 1 of the replica crashes, the machine is still able to continue working by transitioning it to another look-alike. Having multiple copies assists with protecting against corrupted data
Example: If there are three copies of any data file data with all of them performed read and write operation. We can prevent failing of an individual write operation getting the value returned by the other two copies are appropriate.
Improve the..
Main