Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import org.apache.giraph.conf.ImmutableClassesGiraphConfiguration;
import org.apache.giraph.graph.GraphMapper;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.ipc.Client;
import org.apache.hadoop.mapreduce.Job;
import org.apache.log4j.Logger;

Expand Down Expand Up @@ -210,7 +209,7 @@ public final boolean run(boolean verbose)

// Set the ping interval to 5 minutes instead of one minute
// (DEFAULT_PING_INTERVAL)
Client.setPingInterval(giraphConfiguration, 60000 * 5);
giraphConfiguration.setInt("ipc.ping.interval", 60000 * 5);

// Should work in MAPREDUCE-1938 to let the user jars/classes
// get loaded first
Expand Down