Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
GIRAPH-1154
Browse files Browse the repository at this point in the history
closes #44
  • Loading branch information
dlogothetis authored and Maja Kabiljo committed Aug 30, 2017
1 parent 0f39df0 commit fc996e7
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -85,12 +85,12 @@ void verboseWriteCurrentMessage(
*/
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");
}
}

0 comments on commit fc996e7

Please sign in to comment.