当前位置: 首页>>代码示例>>Java>>正文


Java Waitable.provide方法代码示例

本文整理汇总了Java中org.apache.hadoop.util.Waitable.provide方法的典型用法代码示例。如果您正苦于以下问题:Java Waitable.provide方法的具体用法?Java Waitable.provide怎么用?Java Waitable.provide使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.util.Waitable的用法示例。


在下文中一共展示了Waitable.provide方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: create

import org.apache.hadoop.util.Waitable; //导入方法依赖的package包/类
private ShortCircuitReplicaInfo create(ExtendedBlockId key,
    ShortCircuitReplicaCreator creator,
    Waitable<ShortCircuitReplicaInfo> newWaitable) {
  // Handle loading a new replica.
  ShortCircuitReplicaInfo info = null;
  try {
    LOG.trace("{}: loading {}", this, key);
    info = creator.createShortCircuitReplicaInfo();
  } catch (RuntimeException e) {
    LOG.warn(this + ": failed to load " + key, e);
  }
  if (info == null) info = new ShortCircuitReplicaInfo();
  lock.lock();
  try {
    if (info.getReplica() != null) {
      // On success, make sure the cache cleaner thread is running.
      LOG.trace("{}: successfully loaded {}", this, info.getReplica());
      startCacheCleanerThreadIfNeeded();
      // Note: new ShortCircuitReplicas start with a refCount of 2,
      // indicating that both this cache and whoever requested the
      // creation of the replica hold a reference.  So we don't need
      // to increment the reference count here.
    } else {
      // On failure, remove the waitable from the replicaInfoMap.
      Waitable<ShortCircuitReplicaInfo> waitableInMap = replicaInfoMap.get(key);
      if (waitableInMap == newWaitable) replicaInfoMap.remove(key);
      if (info.getInvalidTokenException() != null) {
        LOG.info(this + ": could not load " + key + " due to InvalidToken " +
            "exception.", info.getInvalidTokenException());
      } else {
        LOG.warn(this + ": failed to load " + key);
      }
    }
    newWaitable.provide(info);
  } finally {
    lock.unlock();
  }
  return info;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:40,代码来源:ShortCircuitCache.java

示例2: create

import org.apache.hadoop.util.Waitable; //导入方法依赖的package包/类
private ShortCircuitReplicaInfo create(ExtendedBlockId key,
    ShortCircuitReplicaCreator creator,
    Waitable<ShortCircuitReplicaInfo> newWaitable) {
  // Handle loading a new replica.
  ShortCircuitReplicaInfo info = null;
  try {
    if (LOG.isTraceEnabled()) {
      LOG.trace(this + ": loading " + key);
    }
    info = creator.createShortCircuitReplicaInfo();
  } catch (RuntimeException e) {
    LOG.warn(this + ": failed to load " + key, e);
  }
  if (info == null) info = new ShortCircuitReplicaInfo();
  lock.lock();
  try {
    if (info.getReplica() != null) {
      // On success, make sure the cache cleaner thread is running.
      if (LOG.isTraceEnabled()) {
        LOG.trace(this + ": successfully loaded " + info.getReplica());
      }
      startCacheCleanerThreadIfNeeded();
      // Note: new ShortCircuitReplicas start with a refCount of 2,
      // indicating that both this cache and whoever requested the 
      // creation of the replica hold a reference.  So we don't need
      // to increment the reference count here.
    } else {
      // On failure, remove the waitable from the replicaInfoMap.
      Waitable<ShortCircuitReplicaInfo> waitableInMap = replicaInfoMap.get(key);
      if (waitableInMap == newWaitable) replicaInfoMap.remove(key);
      if (info.getInvalidTokenException() != null) {
        LOG.info(this + ": could not load " + key + " due to InvalidToken " +
            "exception.", info.getInvalidTokenException());
      } else {
        LOG.warn(this + ": failed to load " + key);
      }
    }
    newWaitable.provide(info);
  } finally {
    lock.unlock();
  }
  return info;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:44,代码来源:ShortCircuitCache.java

示例3: create

import org.apache.hadoop.util.Waitable; //导入方法依赖的package包/类
private ShortCircuitReplicaInfo create(ExtendedBlockId key,
    ShortCircuitReplicaCreator creator,
    Waitable<ShortCircuitReplicaInfo> newWaitable) {
  // Handle loading a new replica.
  ShortCircuitReplicaInfo info = null;
  try {
    if (LOG.isTraceEnabled()) {
      LOG.trace(this + ": loading " + key);
    }
    info = creator.createShortCircuitReplicaInfo();
  } catch (RuntimeException e) {
    LOG.warn(this + ": failed to load " + key, e);
  }
  if (info == null) info = new ShortCircuitReplicaInfo();
  lock.lock();
  try {
    if (info.getReplica() != null) {
      // On success, make sure the cache cleaner thread is running.
      if (LOG.isTraceEnabled()) {
        LOG.trace(this + ": successfully loaded " + info.getReplica());
      }
      startCacheCleanerThreadIfNeeded();
      // Note: new ShortCircuitReplicas start with a refCount of 2,
      // indicating that both this cache and whoever requested the 
      // creation of the replica hold a reference.  So we don't need
      // to increment the reference count here.
    } else {
      // On failure, remove the waitable from the replicaInfoMap.
      Waitable<ShortCircuitReplicaInfo> waitableInMap = replicaInfoMap.get(key);
      if (waitableInMap == newWaitable) replicaInfoMap.remove(key);
      if (info.getInvalidTokenException() != null) {
        LOG.warn(this + ": could not load " + key + " due to InvalidToken " +
            "exception.", info.getInvalidTokenException());
      } else {
        LOG.warn(this + ": failed to load " + key);
      }
    }
    newWaitable.provide(info);
  } finally {
    lock.unlock();
  }
  return info;
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:44,代码来源:ShortCircuitCache.java


注:本文中的org.apache.hadoop.util.Waitable.provide方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。