Running jar file map reduce without Hdfs Running jar file map reduce without Hdfs hadoop hadoop

Running jar file map reduce without Hdfs


You can run hadoop in 'local' mode by overriding the job tracker and file system properties from the command line:

hadoop jar <jar-file> <main-class> -fs local -jt local <other-args..>

You need to be using the GenricOptionsParser (which is the norm if you're using ToolRunner to launch your jobs.