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 2014/01/13 08:18:51 UTC

[jira] [Updated] (HAMA-843) Message communication overhead between master aggregation and vertex computation supersteps

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

Edward J. Yoon updated HAMA-843:
--------------------------------

    Attachment: HAMA-843.patch

Attach my patch. This will improve the PageRank performance dramatically.

> Message communication overhead between master aggregation and vertex computation supersteps
> -------------------------------------------------------------------------------------------
>
>                 Key: HAMA-843
>                 URL: https://issues.apache.org/jira/browse/HAMA-843
>             Project: Hama
>          Issue Type: Improvement
>          Components: graph
>    Affects Versions: 0.6.3
>            Reporter: Edward J. Yoon
>             Fix For: 0.7.0
>
>         Attachments: HAMA-843.patch
>
>
> Within doAggregationUpdates() method, we sends unconsumed messages to next superstep using send() method. This is huge overhead.
> {code}
>     // in case we need to sync, we need to replay the messages that already
>     // are added to the queue. This prevents loosing messages when using
>     // aggregators.
>     if (firstVertexMessage != null) {
>       peer.send(peer.getPeerName(), firstVertexMessage);
>     }
>     GraphJobMessage msg = null;
>     while ((msg = peer.getCurrentMessage()) != null) {
>       peer.send(peer.getPeerName(), msg);
>     }
> {code}
> Once HAMA-842 is done, we can get rid of this overhead.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)