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 2018/03/29 16:23:55 UTC

git commit: updated refs/heads/trunk to 98b724f

Repository: giraph
Updated Branches:
  refs/heads/trunk d16b6b8ce -> 98b724f97


GIRAPH-1183

closes #67


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

Branch: refs/heads/trunk
Commit: 98b724f979a9305a5c92d361aa9a89a111c76701
Parents: d16b6b8
Author: Maja Kabiljo <ma...@fb.com>
Authored: Thu Mar 29 09:22:59 2018 -0700
Committer: Maja Kabiljo <ma...@fb.com>
Committed: Thu Mar 29 09:22:59 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/giraph/partition/PartitionUtils.java     | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/98b724f9/giraph-core/src/main/java/org/apache/giraph/partition/PartitionUtils.java
----------------------------------------------------------------------
diff --git a/giraph-core/src/main/java/org/apache/giraph/partition/PartitionUtils.java b/giraph-core/src/main/java/org/apache/giraph/partition/PartitionUtils.java
index 38b879b..b714f03 100644
--- a/giraph-core/src/main/java/org/apache/giraph/partition/PartitionUtils.java
+++ b/giraph-core/src/main/java/org/apache/giraph/partition/PartitionUtils.java
@@ -136,14 +136,6 @@ public class PartitionUtils {
         Lists.newArrayList(workerStatsMap.entrySet());
 
     if (LOG.isInfoEnabled()) {
-      StringBuilder sb = new StringBuilder();
-      for (Entry<WorkerInfo, VertexEdgeCount> worker : workerEntryList) {
-        sb.append(worker.getKey());
-        sb.append(":");
-        sb.append(worker.getValue());
-        sb.append(",");
-      }
-      LOG.info("analyzePartitionStats: [" + sb + "]");
       Collections.sort(workerEntryList, new VertexCountComparator());
       LOG.info("analyzePartitionStats: Vertices - Mean: " +
           (totalVertexEdgeCount.getVertexCount() /