Data Replication error in Hadoop

后端 未结 8 798
清酒与你
清酒与你 2021-01-31 10:22

I am implementing the Hadoop Single Node Cluster on my machine by following Michael Noll\'s tutorial and have come across data replication error:

Here\'s the full error

8条回答
  •  灰色年华
    2021-01-31 10:45

    Look at your namenode (probably http://localhost:50070) and see how many datanodes it says you have.

    If it is 0, then either your datanode isn't running or it isn't configured to connect to the namenode.

    If it is 1, check to see how much free space it says there is in the DFS. It may be that the data node doesn't have anywhere it can write data to (data dir doesn't exist, or doesn't have write permissions).

提交回复
热议问题