YARN-1561. Fix a generic type warning in FairScheduler. (Chen He via junping_du)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1571924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Junping Du 2014-02-26 05:14:51 +00:00
parent 4449247410
commit c7142e7761
2 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,8 @@ Release 2.5.0 - UNRELEASED
YARN-1678. Fair scheduler gabs incessantly about reservations (Sandy Ryza)
YARN-1561. Fix a generic type warning in FairScheduler. (Chen He via junping_du)
OPTIMIZATIONS
BUG FIXES

View File

@ -175,7 +175,7 @@ public class FairScheduler extends AbstractYarnScheduler {
protected WeightAdjuster weightAdjuster; // Can be null for no weight adjuster
protected boolean continuousSchedulingEnabled; // Continuous Scheduling enabled or not
protected int continuousSchedulingSleepMs; // Sleep time for each pass in continuous scheduling
private Comparator nodeAvailableResourceComparator =
private Comparator<NodeId> nodeAvailableResourceComparator =
new NodeAvailableResourceComparator(); // Node available resource comparator
protected double nodeLocalityThreshold; // Cluster threshold for node locality
protected double rackLocalityThreshold; // Cluster threshold for rack locality