Re: How to chain multiple hadoop jobs?

2008-07-16 Thread Joman Chu
not start up. -- Joman Chu AIM: ARcanUSNUMquam IRC: irc.liquid-silver.net -- View this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18452309.html Sent from the Hadoop core-user mailing list archive at Nabble.com.

RE: How to chain multiple hadoop jobs?

2008-07-15 Thread Goel, Ankur
@hadoop.apache.org Subject: Re: How to chain multiple hadoop jobs? Weird. I use eclipse, but that's never happened to me. When you set up your JobConfs, for example: JobConf conf2 = new JobConf(getConf(),MyClass.class) is your MyClass in the same package as your driver program? also, do you run from

RE: How to chain multiple hadoop jobs?

2008-07-15 Thread Sean Arietta
@hadoop.apache.org Subject: Re: How to chain multiple hadoop jobs? Weird. I use eclipse, but that's never happened to me. When you set up your JobConfs, for example: JobConf conf2 = new JobConf(getConf(),MyClass.class) is your MyClass in the same package as your driver program? also, do you run from

Re: How to chain multiple hadoop jobs?

2008-07-14 Thread Sean Arietta
-- View this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18452309.html Sent from the Hadoop core-user mailing list archive at Nabble.com.

Re: How to chain multiple hadoop jobs?

2008-07-14 Thread Sean Arietta
this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18452309.html Sent from the Hadoop core-user mailing list archive at Nabble.com. -- View this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18453200.html Sent

Re: How to chain multiple hadoop jobs?

2008-07-14 Thread Joman Chu
not start up. -- Joman Chu AIM: ARcanUSNUMquam IRC: irc.liquid-silver.net -- View this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18452309.html Sent from the Hadoop core-user mailing list archive at Nabble.com.

Re: How to chain multiple hadoop jobs?

2008-07-14 Thread Mori Bellamy
trouble with this method -- for especially long jobs, the latter MR tasks sometimes do not start up. -- Joman Chu AIM: ARcanUSNUMquam IRC: irc.liquid-silver.net -- View this message in context: http://www.nabble.com/How-to-chain-multiple-hadoop-jobs--tp18370089p18452309.html Sent from

Re: How to chain multiple hadoop jobs?

2008-07-09 Thread Lukas Vlcek
Hi, May be you should try to look at JobControl (see TestJobControl.java for particular example). Regards, Lukas On Wed, Jul 9, 2008 at 10:28 PM, Mori Bellamy [EMAIL PROTECTED] wrote: Hey all, I'm trying to chain multiple mapreduce jobs together to accomplish a complex task. I believe that