Hey, On Mon, Feb 21, 2011 at 5:10 AM, Shivani Rao <sg...@purdue.edu> wrote: > $hadoop jar /path to hadoop examples/hadoop-examples.jar pi 10 10000 > -Dmapred.queue.name=<queue name> > > and I get a syntax error
I guess the generic options come before the application ones. Also, it is 'mapred.job.queue.name' for job submissions. Try the following, it ought to work: hadoop jar /path to hadoop examples/hadoop-examples.jar pi -Dmapred.job.queue.name=<queue name> 10 10000 -- Harsh J www.harshj.com