You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ma...@apache.org on 2017/08/30 18:49:24 UTC

git commit: updated refs/heads/trunk to fc996e7

Repository: giraph
Updated Branches:
  refs/heads/trunk 0f39df025 -> fc996e753


GIRAPH-1154

closes #44


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/fc996e75
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/fc996e75
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/fc996e75

Branch: refs/heads/trunk
Commit: fc996e7530dadf0cb498ba1970a6de5ea6edd817
Parents: 0f39df0
Author: Dionysios Logothetis <dl...@gmail.com>
Authored: Mon Aug 28 16:43:57 2017 -0700
Committer: Maja Kabiljo <ma...@fb.com>
Committed: Wed Aug 30 11:48:51 2017 -0700

----------------------------------------------------------------------
 .../giraph/utils/VerboseByteStructMessageWrite.java   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/fc996e75/giraph-core/src/main/java/org/apache/giraph/utils/VerboseByteStructMessageWrite.java
----------------------------------------------------------------------
diff --git a/giraph-core/src/main/java/org/apache/giraph/utils/VerboseByteStructMessageWrite.java b/giraph-core/src/main/java/org/apache/giraph/utils/VerboseByteStructMessageWrite.java
index c3c43fb..239a88c 100644
--- a/giraph-core/src/main/java/org/apache/giraph/utils/VerboseByteStructMessageWrite.java
+++ b/giraph-core/src/main/java/org/apache/giraph/utils/VerboseByteStructMessageWrite.java
@@ -85,12 +85,12 @@ public class VerboseByteStructMessageWrite {
    */
   public static <I extends WritableComparable>
   void handleNegativeArraySize(I vertexId) {
-    throw new RuntimeException("The numbers of bytes sent to vertex " +
-        vertexId + " exceeded the max capacity of " +
-        "its ExtendedDataOutput. Please consider setting " +
-        "giraph.useBigDataIOForMessages=true. If there are super-vertices" +
-        " in the graph which receive a lot of messages (total serialized " +
-        "size of messages goes beyond the maximum size of a byte array), " +
-        "setting this option to true will remove that limit");
+    throw new RuntimeException("The number of bytes sent to vertex " +
+      vertexId + " exceeded the max capacity of its buffer. Please consider" +
+      " setting giraph.useBigDataIOForMessages to true. You can do" +
+      " this by adding the following option to your command line:" +
+      " -Dgiraph.useBigDataIOForMessages=true." +
+      " If there are super-vertices in the graph that receive many messages," +
+      " setting this option will remove that limit");
   }
 }