Re: JobClient equivalent in new mapreduce api

2011-01-08 Thread Harsh J
On Sun, Jan 9, 2011 at 3:29 AM, Sarthak Dudhara wrote: > Hi, > > I want to submit my mapreduce written with the new API specification as the > older ones are marked deprecated. To submit, just do Job.submit(); or Job.waitForCompletion(true) for a blocking submission. > I could not find a JobClie

Re: Multiple input files, no reducer, output is "stomped" by the just one of the files

2011-01-08 Thread Brett Hoerner
I found my issue, for future readers: I forgot to append the 3rd argument of generateFileNameForKeyValue (the String) to the returned filenames. That String is the "part0001", etc which gives each mapper a unique filename. On Thu, Jan 6, 2011 at 2:51 PM, Brett Hoerner wrote: > Hello, > > I'm

JobClient equivalent in new mapreduce api

2011-01-08 Thread Sarthak Dudhara
Hi, I want to submit my mapreduce written with the new API specification as the older ones are marked deprecated. I could not find a JobClient equivalent in the new API. Has anyone managed to use a similar jobClient mechanism to track Map reduce jobs written with the new API spec? Is there anothe