|
|
-
o.a.h.mapred.jobcontrol.Job and mapreduce.Job
bharath vissapragada 2009-10-03, 18:03
Hi all,
Whats the difference between the Job classes present in
o.a.h.mapred.jobcontrol and o.a.h.mapreduce ..
Both have different types of constructors , different functions etc..
Which one should we use in out MR programs..
Thanks
-
Re: o.a.h.mapred.jobcontrol.Job and mapreduce.Job
Amandeep Khurana 2009-10-03, 20:52
The mapred package was prevalent till the 0.19 versions.. From 0.20 onwards, we are using the mapreduce package. mapred is deprecated in 0.20 and will be phased out in the future releases.. So, use the mapreduce package...
-ak Amandeep Khurana Computer Science Graduate Student University of California, Santa Cruz On Sat, Oct 3, 2009 at 11:03 AM, bharath vissapragada < [EMAIL PROTECTED]> wrote:
> Hi all, > > Whats the difference between the Job classes present in > > o.a.h.mapred.jobcontrol and o.a.h.mapreduce .. > > Both have different types of constructors , different functions etc.. > > Which one should we use in out MR programs.. > > Thanks >
-
Re: o.a.h.mapred.jobcontrol.Job and mapreduce.Job
bharath v 2009-10-04, 04:21
Amandeep ,
Thanks for your reply , but i can't find functions such as "addDependantJob()" etc in mapreduce package, They are present in mapred.jobcontrol.Job , Are they removed or replaced by some other functions in 0.20.0
Thanks bharath.v
On Sun, Oct 4, 2009 at 2:22 AM, Amandeep Khurana <[EMAIL PROTECTED]> wrote:
> The mapred package was prevalent till the 0.19 versions.. From 0.20 > onwards, > we are using the mapreduce package. mapred is deprecated in 0.20 and will > be > phased out in the future releases.. So, use the mapreduce package... > > -ak > > > Amandeep Khurana > Computer Science Graduate Student > University of California, Santa Cruz > > > On Sat, Oct 3, 2009 at 11:03 AM, bharath vissapragada < > [EMAIL PROTECTED]> wrote: > > > Hi all, > > > > Whats the difference between the Job classes present in > > > > o.a.h.mapred.jobcontrol and o.a.h.mapreduce .. > > > > Both have different types of constructors , different functions etc.. > > > > Which one should we use in out MR programs.. > > > > Thanks > > >
-
Re: o.a.h.mapred.jobcontrol.Job and mapreduce.Job
Amandeep Khurana 2009-10-04, 07:43
Yes there are changes in the api. I'm not sure what's the equivalent function in this particular case. If you can't find anything, you can use the mapred package. It'll work fine as of now...
On 10/3/09, bharath v <[EMAIL PROTECTED]> wrote: > Amandeep , > > Thanks for your reply , but i can't find functions such as > "addDependantJob()" etc in mapreduce package, > They are present in mapred.jobcontrol.Job , Are they removed or replaced by > some other functions in 0.20.0 > > Thanks > bharath.v > > On Sun, Oct 4, 2009 at 2:22 AM, Amandeep Khurana <[EMAIL PROTECTED]> wrote: > >> The mapred package was prevalent till the 0.19 versions.. From 0.20 >> onwards, >> we are using the mapreduce package. mapred is deprecated in 0.20 and will >> be >> phased out in the future releases.. So, use the mapreduce package... >> >> -ak >> >> >> Amandeep Khurana >> Computer Science Graduate Student >> University of California, Santa Cruz >> >> >> On Sat, Oct 3, 2009 at 11:03 AM, bharath vissapragada < >> [EMAIL PROTECTED]> wrote: >> >> > Hi all, >> > >> > Whats the difference between the Job classes present in >> > >> > o.a.h.mapred.jobcontrol and o.a.h.mapreduce .. >> > >> > Both have different types of constructors , different functions etc.. >> > >> > Which one should we use in out MR programs.. >> > >> > Thanks >> > >> > -- Amandeep Khurana Computer Science Graduate Student University of California, Santa Cruz
-
Re: o.a.h.mapred.jobcontrol.Job and mapreduce.Job
Amareshwari Sriramadasu 2009-10-05, 08:14
o.a.h.mapred.jobcontrol.Job and mapreduce.Job are two different classes. o.a.h.mapred.jobcontrol.Job is deprecated and corresponding new api is available in branch 0.21 @ o.a.h.mapreduce.lib.jobcontrol.ControlledJob.
Thanks Amareshwari Amandeep Khurana wrote: > Yes there are changes in the api. I'm not sure what's the equivalent > function in this particular case. If you can't find anything, you can > use the mapred package. It'll work fine as of now... > > On 10/3/09, bharath v <[EMAIL PROTECTED]> wrote: > >> Amandeep , >> >> Thanks for your reply , but i can't find functions such as >> "addDependantJob()" etc in mapreduce package, >> They are present in mapred.jobcontrol.Job , Are they removed or replaced by >> some other functions in 0.20.0 >> >> Thanks >> bharath.v >> >> On Sun, Oct 4, 2009 at 2:22 AM, Amandeep Khurana <[EMAIL PROTECTED]> wrote: >> >> >>> The mapred package was prevalent till the 0.19 versions.. From 0.20 >>> onwards, >>> we are using the mapreduce package. mapred is deprecated in 0.20 and will >>> be >>> phased out in the future releases.. So, use the mapreduce package... >>> >>> -ak >>> >>> >>> Amandeep Khurana >>> Computer Science Graduate Student >>> University of California, Santa Cruz >>> >>> >>> On Sat, Oct 3, 2009 at 11:03 AM, bharath vissapragada < >>> [EMAIL PROTECTED]> wrote: >>> >>> >>>> Hi all, >>>> >>>> Whats the difference between the Job classes present in >>>> >>>> o.a.h.mapred.jobcontrol and o.a.h.mapreduce .. >>>> >>>> Both have different types of constructors , different functions etc.. >>>> >>>> Which one should we use in out MR programs.. >>>> >>>> Thanks >>>> >>>> > > >
|
|