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

org.apache.hadoop.yarn.api.records.ApplicationId 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;

/**
 * 

ApplicationId represents the globally unique * identifier for an application.

* *

The globally unique nature of the identifier is achieved by using the * cluster timestamp i.e. start-time of the * ResourceManager along with a monotonically increasing counter * for the application.

*/ @Public @Stable public abstract class ApplicationId implements Comparable { @Private @Unstable public static final String appIdStrPrefix = "application_"; @Private @Unstable public static ApplicationId newInstance(long clusterTimestamp, int id) { ApplicationId appId = Records.newRecord(ApplicationId.class); appId.setClusterTimestamp(clusterTimestamp); appId.setId(id); appId.build(); return appId; } /** * Get the short integer identifier of the ApplicationId * which is unique for all applications started by a particular instance * of the ResourceManager. * @return short integer identifier of the ApplicationId */ @Public @Stable public abstract int getId(); @Private @Unstable protected abstract void setId(int id); /** * Get the start time of the ResourceManager which is * used to generate globally unique ApplicationId. * @return start time of the ResourceManager */ @Public @Stable public abstract long getClusterTimestamp(); @Private @Unstable protected abstract void setClusterTimestamp(long clusterTimestamp); protected abstract void build(); static final ThreadLocal appIdFormat = new ThreadLocal() { @Override public NumberFormat initialValue() { NumberFormat fmt = NumberFormat.getInstance(); fmt.setGroupingUsed(false); fmt.setMinimumIntegerDigits(4); return fmt; } }; @Override public int compareTo(ApplicationId other) { if (this.getClusterTimestamp() - other.getClusterTimestamp() == 0) { return this.getId() - other.getId(); } else { return this.getClusterTimestamp() > other.getClusterTimestamp() ? 1 : this.getClusterTimestamp() < other.getClusterTimestamp() ? -1 : 0; } } @Override public String toString() { return appIdStrPrefix + this.getClusterTimestamp() + "_" + appIdFormat.get().format(getId()); } @Override public int hashCode() { // Generated by eclipse. final int prime = 371237; int result = 6521; long clusterTimestamp = getClusterTimestamp(); result = prime * result + (int) (clusterTimestamp ^ (clusterTimestamp >>> 32)); result = prime * result + getId(); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ApplicationId other = (ApplicationId) obj; if (this.getClusterTimestamp() != other.getClusterTimestamp()) return false; if (this.getId() != other.getId()) return false; return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy