Description
I'm kind a new to this, so sorry if i'm wrong.
The thing is the number of fetcher reducers are currently set to the value of "mapreduce.job.maps" when the arg not passed. It should be "mapreduce.job.reduces".
https://github.com/apache/nutch/blob/2.x/src/java/org/apache/nutch/fetcher/FetcherJob.java#L216
Line: 216, branch-2.X
if (numTasks == null || numTasks < 1) { currentJob.setNumReduceTasks(currentJob.getConfiguration().getInt( "mapreduce.job.maps", currentJob.getNumReduceTasks())); } else { currentJob.setNumReduceTasks(numTasks); }
Attachments
Issue Links
- links to