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

org.apache.hadoop.yarn.api.records.UpdateContainerRequest 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;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.yarn.api.ApplicationMasterProtocol;
import org.apache.hadoop.yarn.util.Records;

/**
 * {@code UpdateContainerRequest} represents the request made by an
 * application to the {@code ResourceManager} to update an attribute of a
 * {@code Container} such as its Resource allocation or (@code ExecutionType}
 * 

* It includes: *

    *
  • version for the container.
  • *
  • {@link ContainerId} for the container.
  • *
  • * {@link Resource} capability of the container after the update request * is completed. *
  • *
  • * {@link ExecutionType} of the container after the update request is * completed. *
  • *
* * Update rules: *
    *
  • * Currently only ONE aspect of the container can be updated per request * (user can either update Capability OR ExecutionType in one request.. * not both). *
  • *
  • * There must be only 1 update request per container in an allocate call. *
  • *
  • * If a new update request is sent for a container (in a subsequent allocate * call) before the first one is satisfied by the Scheduler, it will * overwrite the previous request. *
  • *
* @see ApplicationMasterProtocol#allocate(org.apache.hadoop.yarn.api.protocolrecords.AllocateRequest) */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract class UpdateContainerRequest { @InterfaceAudience.Public @InterfaceStability.Unstable public static UpdateContainerRequest newInstance(int version, ContainerId containerId, ContainerUpdateType updateType, Resource targetCapability, ExecutionType targetExecutionType) { UpdateContainerRequest request = Records.newRecord(UpdateContainerRequest.class); request.setContainerVersion(version); request.setContainerId(containerId); request.setContainerUpdateType(updateType); request.setExecutionType(targetExecutionType); request.setCapability(targetCapability); return request; } /** * Get the ContainerId of the container. * @return ContainerId of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract int getContainerVersion(); /** * Set the current version of the container. * @param containerVersion of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract void setContainerVersion(int containerVersion); /** * Get the ContainerUpdateType of the container. * @return ContainerUpdateType of the container. */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract ContainerUpdateType getContainerUpdateType(); /** * Set the ContainerUpdateType of the container. * @param updateType of the Container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract void setContainerUpdateType(ContainerUpdateType updateType); /** * Get the ContainerId of the container. * @return ContainerId of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract ContainerId getContainerId(); /** * Set the ContainerId of the container. * @param containerId ContainerId of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract void setContainerId(ContainerId containerId); /** * Get the target ExecutionType of the container. * @return ExecutionType of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract ExecutionType getExecutionType(); /** * Set the target ExecutionType of the container. * @param executionType ExecutionType of the container */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract void setExecutionType(ExecutionType executionType); /** * Set the Resource capability of the request. * @param capability Resource capability of the request */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract void setCapability(Resource capability); /** * Get the Resource capability of the request. * @return Resource capability of the request */ @InterfaceAudience.Public @InterfaceStability.Unstable public abstract Resource getCapability(); @Override public int hashCode() { final int prime = 2153; int result = 2459; ContainerId cId = getContainerId(); ExecutionType execType = getExecutionType(); Resource capability = getCapability(); ContainerUpdateType updateType = getContainerUpdateType(); result = prime * result + ((capability == null) ? 0 : capability.hashCode()); result = prime * result + ((cId == null) ? 0 : cId.hashCode()); result = prime * result + getContainerVersion(); result = prime * result + ((execType == null) ? 0 : execType.hashCode()); result = prime * result + ((updateType== null) ? 0 : updateType.hashCode()); return result; } @Override public String toString() { return "UpdateReq{" + "containerId=" + getContainerId() + ", " + "containerVersion=" + getContainerVersion() + ", " + "targetExecType=" + getExecutionType() + ", " + "targetCapability=" + getCapability() + ", " + "updateType=" + getContainerUpdateType() + ", " + "}"; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } UpdateContainerRequest other = (UpdateContainerRequest) obj; Resource capability = getCapability(); if (capability == null) { if (other.getCapability() != null) { return false; } } else if (!capability.equals(other.getCapability())) { return false; } ContainerId cId = getContainerId(); if (cId == null) { if (other.getContainerId() != null) { return false; } } else if (!cId.equals(other.getContainerId())) { return false; } if (getContainerVersion() != other.getContainerVersion()) { return false; } ExecutionType execType = getExecutionType(); if (execType == null) { if (other.getExecutionType() != null) { return false; } } else if (!execType.equals(other.getExecutionType())) { return false; } ContainerUpdateType updateType = getContainerUpdateType(); if (updateType == null) { if (other.getContainerUpdateType() != null) { return false; } } else if (!updateType.equals(other.getContainerUpdateType())) { return false; } return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy