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
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.