jerryjung created TAJO-1515:
-------------------------------

             Summary: task history file size limit
                 Key: TAJO-1515
                 URL: https://issues.apache.org/jira/browse/TAJO-1515
             Project: Tajo
          Issue Type: Bug
          Components: web UI
            Reporter: jerryjung
            Priority: Trivial


If task history file size over 100MB, WebUI appears internal 500 error. The 
value is hardcoding. IMO file size should assign property value. 

    FileStatus fileStatus = fs.getFileStatus(detailFile);
    if (fileStatus.getLen() > 100 * 1024 * 1024) {    // 100MB
      throw new IOException("TaskHistory file is too big: " + detailFile + ", " 
+ fileStatus.getLen() + " bytes");
    }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to