Multi-threaded vertex processing
--------------------------------

                 Key: HAMA-526
                 URL: https://issues.apache.org/jira/browse/HAMA-526
             Project: Hama
          Issue Type: Improvement
          Components: bsp, graph
            Reporter: Edward J. Yoon


{code}
      for (Map.Entry<String, LinkedList<Writable>> e : msgMap.entrySet()) {
        if (e.getValue().size() > 0) {
          vertices.get(e.getKey()).compute(e.getValue().iterator());
        }
      }
{code}

Above code will run Vertex sequentially. Do you think we can run Vertex 
processing concurrently using multi-threads?

Then what's the advantages or disadvantages of using multi-threading?


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to