You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Guilin Sun (JIRA)" <ji...@apache.org> on 2010/03/31 05:27:27 UTC

[jira] Resolved: (MAPREDUCE-1647) JvmEnv miss logSize argument

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

Guilin Sun resolved MAPREDUCE-1647.
-----------------------------------

    Resolution: Duplicate

Duplicated with MAPREDUCE-1057.

> JvmEnv miss logSize argument
> ----------------------------
>
>                 Key: MAPREDUCE-1647
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-1647
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: tasktracker
>            Reporter: Guilin Sun
>         Attachments: patch.txt
>
>
> class JvmEnv missed logSize argument in its constructor, thus task-jvms seems will never limit their stdout/stderr outputs into specified size.
> {code:title=JvmManager.java|borderStyle=solid}
>     public JvmEnv(List<String> setup, Vector<String> vargs, File stdout,
>         File stderr, long logSize, File workDir, Map<String,String> env,
>         JobConf conf) {
>       this.setup = setup;
>       this.vargs = vargs;
>       this.stdout = stdout;
>       this.stderr = stderr;
>       this.workDir = workDir;
>       this.env = env;
>       this.conf = conf;
>     }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.