RE: Run hadoop Map/Reduce app from another machine

2011-10-05 Thread Devaraj K
Hi Oleksiy, No need to copy the jar file and execute the hadoop command remotely to submit job. Hadoop provides JobClient API to submit and monitor the jobs from remote systems/remote application. http://hadoop.apache.org/common/docs/r0.20.0/api/org/apache/hadoop/mapred/Jo bClient.html

Re: Run hadoop Map/Reduce app from another machine

2011-10-05 Thread Yang Xiaoliang
Install hadoop on your local machine, copy the configuration files from the remote hadoop culuster server to your local machine(including the hosts file), then you can just submit a *.jar locally as before. 2011/10/5 oleksiy > > Hello, > > I'm trying to find a way how to run hadoop MapReduce ap