blob: cb3fd4d8a5a70e93b2990970cca4eb7848377394 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.giraph.graph.partition;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.giraph.graph.VertexEdgeCount;
import org.apache.giraph.graph.WorkerInfo;
import org.apache.log4j.Logger;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
/**
* Helper class for {@link Partition} related operations.
*/
public class PartitionUtils {
/** Class logger */
private static Logger LOG = Logger.getLogger(PartitionUtils.class);
private static class EdgeCountComparator implements
Comparator<Entry<WorkerInfo, VertexEdgeCount>> {
@Override
public int compare(Entry<WorkerInfo, VertexEdgeCount> worker1,
Entry<WorkerInfo, VertexEdgeCount> worker2) {
return (int) (worker1.getValue().getEdgeCount() -
worker2.getValue().getEdgeCount());
}
}
private static class VertexCountComparator implements
Comparator<Entry<WorkerInfo, VertexEdgeCount>> {
@Override
public int compare(Entry<WorkerInfo, VertexEdgeCount> worker1,
Entry<WorkerInfo, VertexEdgeCount> worker2) {
return (int) (worker1.getValue().getEdgeCount() -
worker2.getValue().getEdgeCount());
}
}
/**
* Check for imbalances on a per worker basis, by calculating the
* mean, high and low workers by edges and vertices.
*/
public static void analyzePartitionStats(
Collection<PartitionOwner> partitionOwnerList,
List<PartitionStats> allPartitionStats) {
Map<Integer, PartitionOwner> idOwnerMap =
new HashMap<Integer, PartitionOwner>();
for (PartitionOwner partitionOwner : partitionOwnerList) {
if (idOwnerMap.put(partitionOwner.getPartitionId(),
partitionOwner) != null) {
throw new IllegalStateException(
"analyzePartitionStats: Duplicate partition " +
partitionOwner);
}
}
Map<WorkerInfo, VertexEdgeCount> workerStatsMap = Maps.newHashMap();
VertexEdgeCount totalVertexEdgeCount = new VertexEdgeCount();
for (PartitionStats partitionStats : allPartitionStats) {
WorkerInfo workerInfo =
idOwnerMap.get(partitionStats.getPartitionId()).getWorkerInfo();
VertexEdgeCount vertexEdgeCount =
workerStatsMap.get(workerInfo);
if (vertexEdgeCount == null) {
workerStatsMap.put(
workerInfo,
new VertexEdgeCount(partitionStats.getVertexCount(),
partitionStats.getEdgeCount()));
} else {
workerStatsMap.put(
workerInfo,
vertexEdgeCount.incrVertexEdgeCount(
partitionStats.getVertexCount(),
partitionStats.getEdgeCount()));
}
totalVertexEdgeCount =
totalVertexEdgeCount.incrVertexEdgeCount(
partitionStats.getVertexCount(),
partitionStats.getEdgeCount());
}
List<Entry<WorkerInfo, VertexEdgeCount>> workerEntryList =
Lists.newArrayList(workerStatsMap.entrySet());
if (LOG.isInfoEnabled()) {
Collections.sort(workerEntryList, new VertexCountComparator());
LOG.info("analyzePartitionStats: Vertices - Mean: " +
(totalVertexEdgeCount.getVertexCount() /
workerStatsMap.size()) +
", Min: " +
workerEntryList.get(0).getKey() + " - " +
workerEntryList.get(0).getValue().getVertexCount() +
", Max: "+
workerEntryList.get(workerEntryList.size() - 1).getKey() +
" - " +
workerEntryList.get(workerEntryList.size() - 1).
getValue().getVertexCount());
Collections.sort(workerEntryList, new EdgeCountComparator());
LOG.info("analyzePartitionStats: Edges - Mean: " +
(totalVertexEdgeCount.getEdgeCount() /
workerStatsMap.size()) +
", Min: " +
workerEntryList.get(0).getKey() + " - " +
workerEntryList.get(0).getValue().getEdgeCount() +
", Max: "+
workerEntryList.get(workerEntryList.size() - 1).getKey() +
" - " +
workerEntryList.get(workerEntryList.size() - 1).
getValue().getEdgeCount());
}
}
}