NodeMap.java
/*
* Licensed 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 com.facebook.presto.execution.scheduler;
import com.facebook.presto.metadata.InternalNode;
import com.facebook.presto.spi.HostAddress;
import com.facebook.presto.spi.NodeProvider;
import com.google.common.collect.SetMultimap;
import java.net.InetAddress;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
public class NodeMap
{
private final Map<String, InternalNode> activeNodesByNodeId;
private final SetMultimap<NetworkLocation, InternalNode> activeWorkersByNetworkPath;
private final Set<String> coordinatorNodeIds;
private final List<InternalNode> activeNodes;
private final List<InternalNode> allNodes;
private final SetMultimap<InetAddress, InternalNode> allNodesByHost;
private final SetMultimap<HostAddress, InternalNode> allNodesByHostAndPort;
private final Optional<ConsistentHashingNodeProvider> consistentHashingNodeProvider;
public NodeMap(
Map<String, InternalNode> activeNodesByNodeId,
SetMultimap<NetworkLocation, InternalNode> activeWorkersByNetworkPath,
Set<String> coordinatorNodeIds,
List<InternalNode> activeNodes,
List<InternalNode> allNodes,
SetMultimap<InetAddress, InternalNode> allNodesByHost,
SetMultimap<HostAddress, InternalNode> allNodesByHostAndPort,
Optional<ConsistentHashingNodeProvider> consistentHashingNodeProvider)
{
this.activeNodesByNodeId = activeNodesByNodeId;
this.activeWorkersByNetworkPath = activeWorkersByNetworkPath;
this.coordinatorNodeIds = coordinatorNodeIds;
this.activeNodes = activeNodes;
this.allNodes = allNodes;
this.allNodesByHost = allNodesByHost;
this.allNodesByHostAndPort = allNodesByHostAndPort;
this.consistentHashingNodeProvider = consistentHashingNodeProvider;
}
public Map<String, InternalNode> getActiveNodesByNodeId()
{
return activeNodesByNodeId;
}
public SetMultimap<NetworkLocation, InternalNode> getActiveWorkersByNetworkPath()
{
return activeWorkersByNetworkPath;
}
public Set<String> getCoordinatorNodeIds()
{
return coordinatorNodeIds;
}
public List<InternalNode> getActiveNodes()
{
return activeNodes;
}
public List<InternalNode> getAllNodes()
{
return allNodes;
}
public SetMultimap<InetAddress, InternalNode> getAllNodesByHost()
{
return allNodesByHost;
}
public SetMultimap<HostAddress, InternalNode> getAllNodesByHostAndPort()
{
return allNodesByHostAndPort;
}
public NodeProvider getNodeProvider(int nodeCount)
{
if (consistentHashingNodeProvider.isPresent()) {
return (key) -> consistentHashingNodeProvider.get().get(key, nodeCount);
}
ModularHashingNodeProvider modularHashingNodeProvider = new ModularHashingNodeProvider(allNodes);
return (key) -> modularHashingNodeProvider.get(key, nodeCount);
}
}