You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2015/11/02 18:56:28 UTC

[jira] [Commented] (TAJO-1515) task history file size limit

    [ https://issues.apache.org/jira/browse/TAJO-1515?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14985623#comment-14985623 ] 

ASF GitHub Bot commented on TAJO-1515:
--------------------------------------

Github user asfgit closed the pull request at:

    https://github.com/apache/tajo/pull/511


> 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
>            Assignee: Yongjin Choi
>            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)