<property>
<name>fs.default.name</name>
<value>hdfs://hadoop41.rutgers.edu:7000/</value>
</property>
<property>
<name>hadoop.tmp.dir</name>
<value>/tmp/hadoop-NetID</value>
</property>
changing
"NetID" to
your own user name.
<property>
<name>mapred.job.tracker</name>
<value>hadoop42.rutgers.edu:7001</value>
</property>
[Note: to be able to submit jobs to our hadoop cluster, a directory has to be created for you. Ask the CS professor sponsoring your work to request one.]
To submit (a sample) job:
cd hadoop-0.20.203.0
bin/hadoop jar hadoop-examples-*.jar grep input output 'dfs[a-z.]+'
One user reported an error trying to submit the example saying "Input
path does not exist."
He was able to fix this with the command
bin/hadoop dfs -mkdir input
To review the output:
bin/hadoop fs -get output output
cat output/*