How NameNode Handles data node failures? | Hadoop Framework Questions

Through checksums. every data has a record followed by a checksum. if checksum doesnot match with the original then it reports an data corrupted error.

1 comment:

  1. If the NameNode does not receive a heart beat signal (send every 3 secs) from the DataNode for a period of time (5 mins). NameNode assumes that the particular DataNode is stale. It is controlled by the properties dfs.namenode.heartbeat.recheck-interval = 3000000 (millisecs) & dfs.heartbeat.interval = 3 (secs)

    ReplyDelete