I am running a simple WordCount m/r job and I get output but I get three warnings that I am not sure if I should pay attention to:
13/04/26 16:24:50 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
13/04/26 16:24:50 WARN conf.Configuration: session.id is deprecated. Instead, use dfs.metrics.session-id
13/04/26 16:24:50 WARN mapred.JobClient: Use GenericOptionsParser for parsing the arguments. Applications should implement Tool for the same.
13/04/26 16:24:51 WARN mapreduce.Counters: Group org.apache.hadoop.mapred.Task$Counter is deprecated. Use org.apache.hadoop.mapreduce.TaskCounter instead
Any ideas on what these mean? The only one that I can see in the code is the last one. I am using GenericOptionsParser as it is part of an example that I copied. But I don't know why this is considered bad.
Thank you.
