You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Akira AJISAKA (JIRA)" <ji...@apache.org> on 2016/01/22 10:35:39 UTC

[jira] [Updated] (MAPREDUCE-6605) Fix typos mapreduce.map.skip.proc.count.autoincr and mapreduce.reduce.skip.proc.count.autoincr in mapred-default.xml

     [ https://issues.apache.org/jira/browse/MAPREDUCE-6605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Akira AJISAKA updated MAPREDUCE-6605:
-------------------------------------
    Hadoop Flags: Reviewed
     Component/s: documentation
         Summary: Fix typos mapreduce.map.skip.proc.count.autoincr and mapreduce.reduce.skip.proc.count.autoincr in mapred-default.xml  (was: Configuration options mapreduce.map.skip.proc.count.autoincr and mapreduce.reduce.skip.proc-count.auto-incr NOT WORKING)

> Fix typos mapreduce.map.skip.proc.count.autoincr and mapreduce.reduce.skip.proc.count.autoincr in mapred-default.xml
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: MAPREDUCE-6605
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6605
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: documentation
>    Affects Versions: 2.7.1
>            Reporter: Dong Zhen
>            Assignee: Kai Sasaki
>         Attachments: MAPREDUCE-6605-branch-2.01.patch, 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)