Re: execute hadoop job from remote web application

2011-10-20 Thread Steve Loughran
On 18/10/11 17:56, Harsh J wrote: Oleg, It will pack up the jar that contains the class specified by setJarByClass into its submission jar and send it up. Thats the function of that particular API method. So, your deduction is almost right there :) On Tue, Oct 18, 2011 at 10:20 PM, Oleg

Re: execute hadoop job from remote web application

2011-10-18 Thread Steve Loughran
On 18/10/11 11:40, Oleg Ruchovets wrote: Hi , what is the way to execute hadoop job on remote cluster. I want to execute my hadoop job from remote web application , but I didn't find any hadoop client (remote API) to do it. Please advice. Oleg the Job class lets you build up and submit jobs

Re: execute hadoop job from remote web application

2011-10-18 Thread Uma Maheswara Rao G 72686
- Original Message - From: Oleg Ruchovets oruchov...@gmail.com Date: Tuesday, October 18, 2011 4:11 pm Subject: execute hadoop job from remote web application To: common-user@hadoop.apache.org Hi , what is the way to execute hadoop job on remote cluster. I want to execute my hadoop

Re: execute hadoop job from remote web application

2011-10-18 Thread Oleg Ruchovets
Excellent. Can you give a small example of code. On Tue, Oct 18, 2011 at 1:13 PM, Uma Maheswara Rao G 72686 mahesw...@huawei.com wrote: - Original Message - From: Oleg Ruchovets oruchov...@gmail.com Date: Tuesday, October 18, 2011 4:11 pm Subject: execute hadoop job from remote

RE: execute hadoop job from remote web application

2011-10-18 Thread Devaraj K
, October 18, 2011 5:01 PM To: common-user@hadoop.apache.org Subject: Re: execute hadoop job from remote web application Excellent. Can you give a small example of code. On Tue, Oct 18, 2011 at 1:13 PM, Uma Maheswara Rao G 72686 mahesw...@huawei.com wrote: - Original Message - From: Oleg

Re: execute hadoop job from remote web application

2011-10-18 Thread Bejoy KS
Oleg If you are looking at how to submit your jobs using JobClient then the below sample can give you a start. //get the configuration parameters and assigns a job name JobConf conf = new JobConf(getConf(), MyClass.class); conf.setJobName(SMS Reports); //setting key

Re: execute hadoop job from remote web application

2011-10-18 Thread Uma Maheswara Rao G 72686
- Original Message - From: Bejoy KS bejoy.had...@gmail.com Date: Tuesday, October 18, 2011 5:25 pm Subject: Re: execute hadoop job from remote web application To: common-user@hadoop.apache.org Oleg If you are looking at how to submit your jobs using JobClient then the below

Re: execute hadoop job from remote web application

2011-10-18 Thread Oleg Ruchovets
it? Thanks In Advance Oleg. On Tue, Oct 18, 2011 at 2:11 PM, Uma Maheswara Rao G 72686 mahesw...@huawei.com wrote: - Original Message - From: Bejoy KS bejoy.had...@gmail.com Date: Tuesday, October 18, 2011 5:25 pm Subject: Re: execute hadoop job from remote web application To: common-user

Re: execute hadoop job from remote web application

2011-10-18 Thread Bejoy KS
Oleg. On Tue, Oct 18, 2011 at 2:11 PM, Uma Maheswara Rao G 72686 mahesw...@huawei.com wrote: - Original Message - From: Bejoy KS bejoy.had...@gmail.com Date: Tuesday, October 18, 2011 5:25 pm Subject: Re: execute hadoop job from remote web application To: common-user

Re: execute hadoop job from remote web application

2011-10-18 Thread Oleg Ruchovets
hadoop job from remote web application To: common-user@hadoop.apache.org Oleg If you are looking at how to submit your jobs using JobClient then the below sample can give you a start. //get the configuration parameters and assigns a job name JobConf conf

Re: execute hadoop job from remote web application

2011-10-18 Thread Oleg Ruchovets
, 2011 5:25 pm Subject: Re: execute hadoop job from remote web application To: common-user@hadoop.apache.org Oleg If you are looking at how to submit your jobs using JobClient then the below sample can give you a start. //get the configuration

Re: execute hadoop job from remote web application

2011-10-18 Thread Harsh J
, 2011 5:25 pm Subject: Re: execute hadoop job from remote web application To: common-user@hadoop.apache.org Oleg      If you are looking at how to submit your jobs using JobClient then the below sample can give you a start. //get the configuration