blob: 2fa735ef8fe9a0e13ce523cdd5e7c93cd0a13aac [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.tez.dag.app.dag;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
import org.apache.tez.dag.app.dag.event.DAGEventSchedulerUpdate;
import org.apache.tez.dag.records.TezTaskAttemptID;
import org.apache.tez.dag.records.TezVertexID;
public abstract class DAGScheduler {
private static class VertexInfo {
int concurrencyLimit;
int concurrency;
Map<TezTaskAttemptID, DAGEventSchedulerUpdate> pendingAttempts = new LinkedHashMap<>();
VertexInfo(int limit) {
this.concurrencyLimit = limit;
}
}
Map<TezVertexID, VertexInfo> vertexInfo = null;
public void addVertexConcurrencyLimit(TezVertexID vId, int concurrency) {
if (vertexInfo == null) {
vertexInfo = new HashMap<>();
}
if (concurrency > 0) {
vertexInfo.put(vId, new VertexInfo(concurrency));
}
}
public void scheduleTask(DAGEventSchedulerUpdate event) {
VertexInfo vInfo = null;
if (vertexInfo != null) {
vInfo = vertexInfo.get(event.getAttempt().getID().getTaskID().getVertexID());
}
scheduleTaskWithLimit(event, vInfo);
}
private void scheduleTaskWithLimit(DAGEventSchedulerUpdate event, VertexInfo vInfo) {
if (vInfo != null) {
if (vInfo.concurrency >= vInfo.concurrencyLimit) {
vInfo.pendingAttempts.put(event.getAttempt().getID(), event);
return; // already at max concurrency
}
vInfo.concurrency++;
}
scheduleTaskEx(event);
}
public void taskCompleted(DAGEventSchedulerUpdate event) {
taskCompletedEx(event);
if (vertexInfo != null) {
VertexInfo vInfo = vertexInfo.get(event.getAttempt().getID().getTaskID().getVertexID());
if (vInfo != null) {
if(vInfo.pendingAttempts.remove(event.getAttempt().getID()) == null) {
vInfo.concurrency--;
if(!vInfo.pendingAttempts.isEmpty()) {
Iterator<DAGEventSchedulerUpdate> i = vInfo.pendingAttempts.values().iterator();
DAGEventSchedulerUpdate nextTaskAttempt = i.next();
i.remove();
scheduleTaskWithLimit(nextTaskAttempt, vInfo);
}
}
}
}
}
public abstract void scheduleTaskEx(DAGEventSchedulerUpdate event);
public abstract void taskCompletedEx(DAGEventSchedulerUpdate event);
/**
* Get the low limit priority for a particular vertex.
* @param vertex to get the priority of
* @return the priority
*/
public int getPriorityLowLimit(final DAG dag, final Vertex vertex) {
final int vertexDistanceFromRoot = vertex.getDistanceFromRoot();
return ((vertexDistanceFromRoot + 1) * dag.getTotalVertices() * 3)
+ (vertex.getVertexId().getId() * 3);
}
/**
* Get the low hight priority for a particular vertex. Default
* to the low limit priority minus two.
* @param vertex to get the priority of
* @return the priority
*/
public int getPriorityHighLimit(final DAG dag, final Vertex vertex) {
return getPriorityLowLimit(dag, vertex) - 2;
}
}