0

Is there any possible solution to achieve Namenode HA in Hadoop 1.x ?

Saikumar A
  • 213
  • 1
  • 2
  • 12

1 Answers1

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