Let's say I'm using cleanup() functions in Hadoop MapReduce. How would I add a progress tracking mechanism inside it, let's say in percentage complete, to display it in console?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no implementation of the cleanup() of the Mapper.java class. When a Hadoop job is run from the command prompt, the following is printed on the console. 11/10/31 18:15:50 INFO mapreduce.Job: map 0% reduce 0% The code for the above is in the Job.java class.
Mapper.cleanup() code has to be modified to print the progress to the console and jar file built. I don't think there is OOB support for the cleanup in Hadoop. |
|||
|
|