This is an automated email from the ASF dual-hosted git repository.
sebastian-nagel pushed a commit to branch branch-1.23
in repository https://gitbox.apache.org/repos/asf/nutch.git
The following commit(s) were added to refs/heads/branch-1.23 by this push:
new 3de073a00 NUTCH-3201 Fetcher launches only a single reduce task,
ignoring the configuration
3de073a00 is described below
commit 3de073a003d05a78d3adfc1c8ee637f93a51ec6c
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);