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
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
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