[
https://issues.apache.org/jira/browse/MAPREDUCE-4066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13238370#comment-13238370
]
Hadoop QA commented on MAPREDUCE-4066:
--------------------------------------
-1 overall. Here are the results of testing the latest attachment
http://issues.apache.org/jira/secure/attachment/12519955/MAPREDUCE-4066.patch
against trunk revision .
+1 @author. The patch does not contain any @author tags.
-1 tests included. The patch doesn't appear to include any new or modified
tests.
Please justify why no new tests are needed for this
patch.
Also please list what manual steps were performed to
verify this patch.
-1 patch. The patch command could not apply the patch.
Console output:
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/2099//console
This message is automatically generated.
> To get "yarn.app.mapreduce.am.staging-dir" value, should set the default value
> ------------------------------------------------------------------------------
>
> Key: MAPREDUCE-4066
> URL: https://issues.apache.org/jira/browse/MAPREDUCE-4066
> Project: Hadoop Map/Reduce
> Issue Type: Bug
> Components: job submission, mrv2
> Affects Versions: 0.23.1
> Environment: client is windows eclipse, server is suse
> Reporter: xieguiming
> Priority: Minor
> Attachments: MAPREDUCE-4066.patch, MAPREDUCE-4066.patch
>
>
> when submit the job use the windows eclipse, and the
> yarn.app.mapreduce.am.staging-dir value is null.
> {code:title=MRApps.java|borderStyle=solid}
> public static Path getStagingAreaDir(Configuration conf, String user) {
> return new Path(
> conf.get(MRJobConfig.MR_AM_STAGING_DIR) +
> Path.SEPARATOR + user + Path.SEPARATOR + STAGING_CONSTANT);
> }
> {code}
> should modify to:
> {code:title=MRApps.java|borderStyle=solid}
> public static Path getStagingAreaDir(Configuration conf, String user) {
> return new Path(
> conf.get(MRJobConfig.MR_AM_STAGING_DIR,"/tmp/hadoop-yarn/staging") +
> Path.SEPARATOR + user + Path.SEPARATOR + STAGING_CONSTANT);
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira