You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2015/05/20 14:44:11 UTC

incubator-tinkerpop git commit: Giraph configuration: increased the max. time to wait before giving up trying to get the minimum number of workers before a superstep from 10 minutes to 1 hour. Integration test suite should now pass again.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master d1b47ba98 -> 6ab8f8973


Giraph configuration: increased the max. time to wait before giving up trying to get the minimum number of workers before a superstep from 10 minutes to 1 hour. Integration test suite should now pass again.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/6ab8f897
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/6ab8f897
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/6ab8f897

Branch: refs/heads/master
Commit: 6ab8f89737a14bff25392db1460e3dda0301b85b
Parents: d1b47ba
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Wed May 20 14:43:47 2015 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Wed May 20 14:43:47 2015 +0200

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java   | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6ab8f897/hadoop-gremlin/src/test/java/org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java
----------------------------------------------------------------------
diff --git a/hadoop-gremlin/src/test/java/org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java b/hadoop-gremlin/src/test/java/org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java
index 1e04fac..220c0b4 100644
--- a/hadoop-gremlin/src/test/java/org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java
+++ b/hadoop-gremlin/src/test/java/org/apache/tinkerpop/gremlin/hadoop/HadoopGraphProvider.java
@@ -46,6 +46,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.Random;
 import java.util.Set;
+import java.util.concurrent.TimeUnit;
 
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
@@ -123,6 +124,7 @@ public class HadoopGraphProvider extends AbstractGraphProvider {
             put(GiraphConstants.NETTY_CLIENT_USE_EXECUTION_HANDLER.getKey(), false); // this prevents so many integration tests running out of threads
             put(GiraphConstants.NUM_INPUT_THREADS.getKey(), 3);
             put(GiraphConstants.NUM_COMPUTE_THREADS.getKey(), 3);
+            put(GiraphConstants.MAX_MASTER_SUPERSTEP_WAIT_MSECS.getKey(), TimeUnit.MINUTES.toMillis(60L));
             put("mapred.reduce.tasks", 4);
             //put("giraph.vertexOutputFormatThreadSafe", false);
             //put("giraph.numOutputThreads", 3);