I am trying to execute the simple Hadoop Mapreduce Wordcount example. I am following this guide to run the program.
One of the steps is to create input and output folders on the hdfs file system.
hadoop dfs -mkdir -p /usr/local/hadoop/input
But that gave me this error:
DEPRECATED: Use of this script to execute hdfs command is deprecated. Instead use the hdfs command for it.
16/09/25 10:57:58 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
So I tried :
hadoop fs -mkdir -p /usr/local/hadoop/input
Output:
16/09/25 10:59:09 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
But the input folder has not been created.
What do I do? Please help!
/usr/local/hadoop/
– Flame of udun