All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.yarn.api.records.Resource Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/**
 * 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.api.records;

import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Evolving;
import org.apache.hadoop.classification.InterfaceStability.Stable;
import org.apache.hadoop.yarn.api.ApplicationMasterProtocol;
import org.apache.hadoop.yarn.util.Records;

/**
 * 

Resource models a set of computer resources in the * cluster.

* *

Currently it models both memory and CPU.

* *

The unit for memory is megabytes. CPU is modeled with virtual cores * (vcores), a unit for expressing parallelism. A node's capacity should * be configured with virtual cores equal to its number of physical cores. A * container should be requested with the number of cores it can saturate, i.e. * the average number of threads it expects to have runnable at a time.

* *

Virtual cores take integer values and thus currently CPU-scheduling is * very coarse. A complementary axis for CPU requests that represents processing * power will likely be added in the future to enable finer-grained resource * configuration.

* *

Typically, applications request Resource of suitable * capability to run their component tasks.

* * @see ResourceRequest * @see ApplicationMasterProtocol#allocate(org.apache.hadoop.yarn.api.protocolrecords.AllocateRequest) */ @Public @Stable public abstract class Resource implements Comparable { @Public @Stable public static Resource newInstance(int memory, int vCores) { Resource resource = Records.newRecord(Resource.class); resource.setMemory(memory); resource.setVirtualCores(vCores); return resource; } /** * Get memory of the resource. * @return memory of the resource */ @Public @Stable public abstract int getMemory(); /** * Set memory of the resource. * @param memory memory of the resource */ @Public @Stable public abstract void setMemory(int memory); /** * Get number of virtual cpu cores of the resource. * * Virtual cores are a unit for expressing CPU parallelism. A node's capacity * should be configured with virtual cores equal to its number of physical cores. * A container should be requested with the number of cores it can saturate, i.e. * the average number of threads it expects to have runnable at a time. * * @return num of virtual cpu cores of the resource */ @Public @Evolving public abstract int getVirtualCores(); /** * Set number of virtual cpu cores of the resource. * * Virtual cores are a unit for expressing CPU parallelism. A node's capacity * should be configured with virtual cores equal to its number of physical cores. * A container should be requested with the number of cores it can saturate, i.e. * the average number of threads it expects to have runnable at a time. * * @param vCores number of virtual cpu cores of the resource */ @Public @Evolving public abstract void setVirtualCores(int vCores); @Override public int hashCode() { final int prime = 263167; int result = 3571; result = 939769357 + getMemory(); // prime * result = 939769357 initially result = prime * result + getVirtualCores(); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (!(obj instanceof Resource)) return false; Resource other = (Resource) obj; if (getMemory() != other.getMemory() || getVirtualCores() != other.getVirtualCores()) { return false; } return true; } @Override public String toString() { return ""; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy