InterviewSolution
| 1. |
Explain the Storage Unit In Hadoop (HDFS). |
|
Answer» HDFS is the Hadoop Distributed File System, is the storage layer for Hadoop. The files in HDFS are SPLIT into BLOCK-size PARTS called data blocks. These blocks are saved on the slave nodes in the cluster. By default, the size of the block is 128 MB by default, which can be configured as per our necessities. It follows the master-slave architecture. It contains two daemons- DataNodes and NameNode. NameNode |
|