Is there any possible solution to achieve Namenode HA in Hadoop 1.x ?
Asked
Active
Viewed 104 times
1 Answers
0
Hadoop 1.x is known for its single point of failure; there is a single Master Node that contains Hadoop Namenode and Hadoop JobTracker. The Namenode keeps look up table for every file (blocks of the file) location on the cluster. The Name node manages Hadoop Distributed File system and act as a HDFS master.
The Secondary NameNode is used for fault tolerance and it is a copy of the NameNode records. It is only used to backup the Namenode in case of crash.

Abdulrahman
- 433
- 4
- 11
-
Does it require any downtime of the cluster for shifting to secondary if NameNode crashed? – Saikumar A Jul 19 '15 at 18:46
-
yes indeed, all the cluster jobs will be killed and run again. – Abdulrahman Jul 20 '15 at 09:06