[
https://issues.apache.org/jira/browse/HAMA-946?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14504836#comment-14504836
]
Edward J. Yoon commented on HAMA-946:
-------------------------------------
For this problem, we can implement rejectedExecutionHandler but I'm not sure
this is good idea.
{code}
@Override
public void rejectedExecution(Runnable runner, ThreadPoolExecutor executor)
{
try {
Thread.sleep(400);
} catch (InterruptedException e) {
e.printStackTrace();
}
executor.execute(runner);
}
{code}
> Graph package code optimization for improve performance
> -------------------------------------------------------
>
> Key: HAMA-946
> URL: https://issues.apache.org/jira/browse/HAMA-946
> Project: Hama
> Issue Type: Improvement
> Components: graph
> Affects Versions: 0.6.4
> Reporter: Edward J. Yoon
> Assignee: Edward J. Yoon
> Fix For: 0.7.0
>
> Attachments: patch.txt
>
>
> This is an umbrella issue for improve performance of graph package.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)