YARN-7180. Remove class ResourceType. Contributed by Sunil G.
This commit is contained in:
parent
0de40f0e27
commit
f4fb6695a3
|
@ -1,28 +0,0 @@
|
|||
/**
|
||||
* 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.hadoop.yarn.server.resourcemanager.resource;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.classification.InterfaceStability.Evolving;
|
||||
|
||||
@Private
|
||||
@Evolving
|
||||
public enum ResourceType {
|
||||
MEMORY, CPU
|
||||
}
|
|
@ -29,8 +29,8 @@ import org.apache.hadoop.conf.Configuration;
|
|||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hadoop.yarn.api.records.Resource;
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.resource.ResourceType;
|
||||
import org.apache.hadoop.yarn.server.utils.BuilderUtils;
|
||||
import org.apache.hadoop.yarn.util.resource.ResourceUtils;
|
||||
import org.apache.hadoop.yarn.util.resource.Resources;
|
||||
|
||||
@Private
|
||||
|
@ -313,11 +313,13 @@ public class FairSchedulerConfiguration extends Configuration {
|
|||
|
||||
private static double[] getResourcePercentage(
|
||||
String val) throws AllocationConfigurationException {
|
||||
double[] resourcePercentage = new double[ResourceType.values().length];
|
||||
int numberOfKnownResourceTypes = ResourceUtils
|
||||
.getNumberOfKnownResourceTypes();
|
||||
double[] resourcePercentage = new double[numberOfKnownResourceTypes];
|
||||
String[] strings = val.split(",");
|
||||
if (strings.length == 1) {
|
||||
double percentage = findPercentage(strings[0], "");
|
||||
for (int i = 0; i < ResourceType.values().length; i++) {
|
||||
for (int i = 0; i < numberOfKnownResourceTypes; i++) {
|
||||
resourcePercentage[i] = percentage/100;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue