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

org.apache.hadoop.yarn.api.records.ApplicationAttemptId 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 java.text.NumberFormat;

import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Stable;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.yarn.util.Records;

/**
 * 

ApplicationAttemptId denotes the particular attempt * of an ApplicationMaster for a given {@link ApplicationId}.

* *

Multiple attempts might be needed to run an application to completion due * to temporal failures of the ApplicationMaster such as hardware * failures, connectivity issues etc. on the node on which it was scheduled.

*/ @Public @Stable public abstract class ApplicationAttemptId implements Comparable { @Private @Unstable public static final String appAttemptIdStrPrefix = "appattempt_"; @Private @Unstable public static ApplicationAttemptId newInstance(ApplicationId appId, int attemptId) { ApplicationAttemptId appAttemptId = Records.newRecord(ApplicationAttemptId.class); appAttemptId.setApplicationId(appId); appAttemptId.setAttemptId(attemptId); appAttemptId.build(); return appAttemptId; } /** * Get the ApplicationId of the ApplicationAttempId. * @return ApplicationId of the ApplicationAttempId */ @Public @Stable public abstract ApplicationId getApplicationId(); @Private @Unstable protected abstract void setApplicationId(ApplicationId appID); /** * Get the attempt id of the Application. * @return attempt id of the Application */ @Public @Stable public abstract int getAttemptId(); @Private @Unstable protected abstract void setAttemptId(int attemptId); static final ThreadLocal attemptIdFormat = new ThreadLocal() { @Override public NumberFormat initialValue() { NumberFormat fmt = NumberFormat.getInstance(); fmt.setGroupingUsed(false); fmt.setMinimumIntegerDigits(6); return fmt; } }; @Override public int hashCode() { // Generated by eclipse. final int prime = 347671; int result = 5501; ApplicationId appId = getApplicationId(); result = prime * result + appId.hashCode(); result = prime * result + getAttemptId(); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ApplicationAttemptId other = (ApplicationAttemptId) obj; if (!this.getApplicationId().equals(other.getApplicationId())) return false; if (this.getAttemptId() != other.getAttemptId()) return false; return true; } @Override public int compareTo(ApplicationAttemptId other) { int compareAppIds = this.getApplicationId().compareTo( other.getApplicationId()); if (compareAppIds == 0) { return this.getAttemptId() - other.getAttemptId(); } else { return compareAppIds; } } @Override public String toString() { StringBuilder sb = new StringBuilder(appAttemptIdStrPrefix); sb.append(this.getApplicationId().getClusterTimestamp()).append("_"); sb.append(ApplicationId.appIdFormat.get().format( this.getApplicationId().getId())); sb.append("_").append(attemptIdFormat.get().format(getAttemptId())); return sb.toString(); } protected abstract void build(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy