Which is the difference between running
a map reduce job doing
/bin/hadoop -jar /file.jar input output
and import jars in eclipse and run the code ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The first command runs the job on the Hadoop cluster as configured in
$HADOOP_HOME/conf. This cluster might be remote, might be a pseudo-distributed cluster or might be local.Running in Eclipse runs it locally. It runs the mappers and reducers locally in the same JVM.