This is an automated email from the ASF dual-hosted git repository.

sebastian-nagel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nutch.git


The following commit(s) were added to refs/heads/master by this push:
     new 9bfb979f5 NUTCH-3201 Fetcher launches only a single reduce task, 
ignoring the configuration
9bfb979f5 is described below

commit 9bfb979f5ba711fecf68ddfad054ddfc10bdac52
Author: Sebastian Nagel <[email protected]>
AuthorDate: Wed Aug 5 12:27:29 2026 +0200

    NUTCH-3201 Fetcher launches only a single reduce task, ignoring the 
configuration
---
 src/java/org/apache/nutch/fetcher/Fetcher.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/java/org/apache/nutch/fetcher/Fetcher.java 
b/src/java/org/apache/nutch/fetcher/Fetcher.java
index acf8a5728..387707118 100644
--- a/src/java/org/apache/nutch/fetcher/Fetcher.java
+++ b/src/java/org/apache/nutch/fetcher/Fetcher.java
@@ -631,7 +631,6 @@ public class Fetcher extends NutchTool implements Tool {
     job.setJarByClass(Fetcher.class);
     job.setMapperClass(Fetcher.FetcherRun.class);
     job.setReducerClass(Fetcher.FetcherReducer.class);
-    job.setNumReduceTasks(1);
 
     FileOutputFormat.setOutputPath(job, segment);
     job.setOutputFormatClass(FetcherOutputFormat.class);

Reply via email to