[
https://issues.apache.org/jira/browse/MAPREDUCE-6605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kai Sasaki updated MAPREDUCE-6605:
----------------------------------
Attachment: MAPREDUCE-6605.01.patch
> Configuration options mapreduce.map.skip.proc.count.autoincr and
> mapreduce.reduce.skip.proc-count.auto-incr NOT WORKING
> -----------------------------------------------------------------------------------------------------------------------
>
> Key: MAPREDUCE-6605
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-6605
> Project: Hadoop Map/Reduce
> Issue Type: Bug
> Affects Versions: 2.7.1
> Reporter: Dong Zhen
> Attachments: MAPREDUCE-6605.01.patch
>
>
> As the default configuration file shows,
> https://hadoop.apache.org/docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/mapred-default.xml
> we can configure options
> mapreduce.map.skip.proc.count.autoincr
> mapreduce.reduce.skip.proc.count.autoincr
> in the mapred-default.xml. But they do not work because the expected keys in
> org.apache.hadoop.mapreduce.MRJobConfig.java
> public static final String MAP_SKIP_INCR_PROC_COUNT =
> "mapreduce.map.skip.proc-count.auto-incr"
> public static final String REDUCE_SKIP_INCR_PROC_COUNT =
> "mapreduce.reduce.skip.proc-count.auto-incr";
> Or
> in org.apache.hadoop.mapreduce.util.ConfigUtil.java
> new DeprecationDelta("mapred.skip.map.auto.incr.proc.count",
> MRJobConfig.MAP_SKIP_INCR_PROC_COUNT),
> new DeprecationDelta("mapred.skip.reduce.auto.incr.proc.count",
> MRJobConfig.REDUCE_SKIP_INCR_PROC_COUNT),
> we can change them to mapreduce.map.skip.proc-count.auto-incr and
> mapreduce.reduce.skip.proc-count.auto-incr in the default configuration file.
>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)