How do I wipe out the DFS in Hadoop?
|
|||||
|
|
You need to do two things:
If you only do (2), it will only remove the metadata stored by the namenode, but won't get rid of all the temporary storage and datanode blocks. |
||||
|
|
|
|||
|
|
So this is what I have had to do in the past. 1. Navigate to your hadoop directory on your NameNode, then stop all the hadoop processes. By running the default stop-all script. This will also stop DFS. e.g.
2. Now On every machine in your cluster (Namenodes, JobTrackers, datanodes etc.) delete all files in your main hadoop storage mine is set to the temp folder in the root folder. Yours can be found in the conf hdfs-site.xml file under hadoop.tmp.dir property e.g.
3. Finally go back to your name node, and format it by going to your hadoop directory and running 'bin/hadoop namenode -format' e.g.
4. Start up your cluster again by running the following command. It will also startup DFS again.
5. And it should work. |
||||
|
|
|
You may issue
This would delete all directories and sub-directories under DFS. Another option is to stop your cluster and then issue:
This would erase all contents on DFS, and then start the cluster again. |
|||
|
|
After all above steps, you can call |
||||
|
|
|
|||
|
|
