I'm reading the GFS paper and get confused about some descriptions:
(Section 3.3 on Page 7)
If a record append fails at any replica, the client retries the operation.
Will the client get a new place to do record append when it retries? Or it is done on the same chunk(s) as the failed one(s)?
(Section 3.3 on Page 7)
GFS does not guarantee that all replicas are bytewise identical. It only guarantees that the data is written at least once as an atomic unit.
If not all replicas are bytewise identical, then isn't it the case that the client may get different data when reading from different replicas? Does this mean that a client should only read streamingly on files which are written using atomic record append?
Hope guys who're familiar with distributed file systems can come out and give an illustration.