Reputation: 1
The screenshot added below shows the output of hdfs fsck /
. It shows that the "/" directory is corrupted. This is the masternode of my Hadoop cluster. What to do?
Upvotes: 0
Views: 556
Reputation: 784
If you are using Hadoop 2, you can run a Standby namenode to achieve High Availability. Without that, your cluster's master will be a Single Point of Failure.
You can not retrieve the data of Namenode from anywhere else since it is different from the usual data you store. If your namenode goes down, your blocks and files will still be there, but you won't be able to access them since there would be no related metadata in the namenode.
Upvotes: 0