You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hama.apache.org by "Edward J. Yoon (JIRA)" <ji...@apache.org> on 2012/11/07 01:58:12 UTC

[jira] [Commented] (HAMA-664) Add bundle size estimator

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

Edward J. Yoon commented on HAMA-664:
-------------------------------------

There's no need to calculate exact size. So, I'll calculate approximate the size using Java Runtime memory utils.
                
> Add bundle size estimator
> -------------------------
>
>                 Key: HAMA-664
>                 URL: https://issues.apache.org/jira/browse/HAMA-664
>             Project: Hama
>          Issue Type: Improvement
>          Components: bsp core
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.6.0
>
>
> I noticed that calculation of bundle object size in Avro RPC and Hadoop RPC causes significant performance decrease and uses huge resources.
> We should get rid of this and figure out another way to convert byte array.
> {code}
>       ByteArrayOutputStream outArray = new ByteArrayOutputStream();
>       DataOutputStream out = new DataOutputStream(outArray);
>       msg.write(out);
>       out.close();
>       byte[] byteArray = outArray.toByteArray();
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira