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

org.apache.hadoop.yarn.sharedcache.SharedCacheChecksumFactory Maven / Gradle / Ivy

The 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.sharedcache;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Evolving;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.util.ReflectionUtils;
import org.apache.hadoop.yarn.conf.YarnConfiguration;
import org.apache.hadoop.yarn.exceptions.YarnRuntimeException;

@SuppressWarnings("unchecked")
@Public
@Evolving
/**
 * A factory class for creating checksum objects based on a configurable
 * algorithm implementation
 */
public class SharedCacheChecksumFactory {
  private static final
      ConcurrentMap,SharedCacheChecksum>
      instances =
          new ConcurrentHashMap,
          SharedCacheChecksum>();

  private static final Class defaultAlgorithm;

  static {
    try {
      defaultAlgorithm = (Class)
          Class.forName(
              YarnConfiguration.DEFAULT_SHARED_CACHE_CHECKSUM_ALGO_IMPL);
    } catch (Exception e) {
      // cannot happen
      throw new ExceptionInInitializerError(e);
    }
  }

  /**
   * Get a new SharedCacheChecksum object based on the configurable
   * algorithm implementation
   * (see yarn.sharedcache.checksum.algo.impl)
   *
   * @return SharedCacheChecksum object
   */
  public static SharedCacheChecksum getChecksum(Configuration conf) {
    Class clazz =
        conf.getClass(YarnConfiguration.SHARED_CACHE_CHECKSUM_ALGO_IMPL,
        defaultAlgorithm, SharedCacheChecksum.class);
    SharedCacheChecksum checksum = instances.get(clazz);
    if (checksum == null) {
      try {
        checksum = ReflectionUtils.newInstance(clazz, conf);
        SharedCacheChecksum old = instances.putIfAbsent(clazz, checksum);
        if (old != null) {
          checksum = old;
        }
      } catch (Exception e) {
        throw new YarnRuntimeException(e);
      }
    }

    return checksum;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy