blob: 414eda8770334cfa1ffdc272a3266a92f46b48b3 [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.ignite.hadoop.planner;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteLogger;
import org.apache.ignite.cluster.ClusterNode;
import org.apache.ignite.hadoop.HadoopMapReducePlanner;
import org.apache.ignite.internal.processors.hadoop.planner.HadoopMapReducePlanGroup;
import org.apache.ignite.internal.processors.hadoop.planner.HadoopMapReducePlanTopology;
import org.apache.ignite.internal.util.typedef.internal.U;
import org.apache.ignite.resources.IgniteInstanceResource;
import org.apache.ignite.resources.LoggerResource;
import static org.apache.ignite.internal.IgniteNodeAttributes.ATTR_MACS;
/**
* Base class for map-reduce planners.
*/
public abstract class HadoopAbstractMapReducePlanner implements HadoopMapReducePlanner {
/** Injected grid. */
@IgniteInstanceResource
protected Ignite ignite;
/** Logger. */
@LoggerResource
protected IgniteLogger log;
/**
* Create plan topology.
*
* @param nodes Topology nodes.
* @return Plan topology.
*/
protected static HadoopMapReducePlanTopology topology(Collection<ClusterNode> nodes) {
Map<String, HadoopMapReducePlanGroup> macsMap = new HashMap<>(nodes.size());
Map<UUID, HadoopMapReducePlanGroup> idToGrp = new HashMap<>(nodes.size());
Map<String, HadoopMapReducePlanGroup> hostToGrp = new HashMap<>(nodes.size());
for (ClusterNode node : nodes) {
String macs = node.attribute(ATTR_MACS);
HadoopMapReducePlanGroup grp = macsMap.get(macs);
if (grp == null) {
grp = new HadoopMapReducePlanGroup(node, macs);
macsMap.put(macs, grp);
}
else
grp.add(node);
idToGrp.put(node.id(), grp);
for (String host : node.addresses()) {
HadoopMapReducePlanGroup hostGrp = hostToGrp.get(host);
if (hostGrp == null)
hostToGrp.put(host, grp);
else
assert hostGrp == grp;
}
}
return new HadoopMapReducePlanTopology(new ArrayList<>(macsMap.values()), idToGrp, hostToGrp);
}
/**
* Groups nodes by host names.
*
* @param top Topology to group.
* @return Map.
*/
protected static Map<String, Collection<UUID>> groupByHost(Collection<ClusterNode> top) {
Map<String, Collection<UUID>> grouped = U.newHashMap(top.size());
for (ClusterNode node : top) {
for (String host : node.hostNames()) {
Collection<UUID> nodeIds = grouped.get(host);
if (nodeIds == null) {
// Expecting 1-2 nodes per host.
nodeIds = new ArrayList<>(2);
grouped.put(host, nodeIds);
}
nodeIds.add(node.id());
}
}
return grouped;
}
}