Datanode
This lesson explains the role of Datanode in HDFS.
DataNodes
The Datanode stores the actual data. It stores the data blocks on its local filesystem and sends a block report to the Namenode.
The data for HDFS files will be stored in the directory specified as the value for the configuration setting dfs.datanode.data.dir
. The ...