Akira Ajisaka created GIRAPH-1110:
-------------------------------------
Summary: Use Configuration.setInt instead of
Client.setPingInterval in GiraphJob
Key: GIRAPH-1110
URL: https://issues.apache.org/jira/browse/GIRAPH-1110
Project: Giraph
Issue Type: Improvement
Reporter: Akira Ajisaka
After HADOOP-11252, Client.setPingInterval is not public.
{code:title=GiraphJob}
Client.setPingInterval(giraphConfiguration, 60000 * 5);
{code}
should be
{code}
giraphConfiguration.setInt("ipc.ping.interval", 60000 * 5);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)