Posted On: Apr 07, 2020
NameNode is the foundation of the HDFS system. It stores all the directory tree of the files in a single file system and keeps track of where the data file is kept. It does not store the data within itself. The NameNode responds to the successful requests by returning the lists of the relevant DataNode servers.
The NameNode is also considered as the single point of failure for the HDFS cluster. The file system goes down when there is a failure of NameNode. The NameNode can be configured to store a single transaction log on a separate disk image.
Never Miss an Articles from us.
Apache Hadoop is used to process a huge amount of data. The architecture of Apache Hadoop consists of Hadoop components and various technologies which is helpful to solve complex data problems easily....
In the hive, Incremental load is generally used to implement slowly changing dimensions. When you migrate your data to the Hadoop Hive, you might usually keep the slowly changing tables to sync up tab...
MR stands for MapReduce. The Difference between MR1 and MR2 are as follows: The earlier version of the map-reduce framework in Hadoop 1.0 is called MR1. The newer version of MapReduce is known as MR2...