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


Java Reason类代码示例

本文整理汇总了Java中org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason的典型用法代码示例。如果您正苦于以下问题:Java Reason类的具体用法?Java Reason怎么用?Java Reason使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Reason类属于org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap包,在下文中一共展示了Reason类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: invalidateCorruptReplicas

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
/**
 * Invalidate corrupt replicas.
 * <p>
 * This will remove the replicas from the block's location list,
 * add them to {@link #invalidateBlocks} so that they could be further
 * deleted from the respective data-nodes,
 * and remove the block from corruptReplicasMap.
 * <p>
 * This method should be called when the block has sufficient
 * number of live replicas.
 *
 * @param blk Block whose corrupt replicas need to be invalidated
 */
private void invalidateCorruptReplicas(BlockInfoContiguous blk) {
  Collection<DatanodeDescriptor> nodes = corruptReplicas.getNodes(blk);
  boolean removedFromBlocksMap = true;
  if (nodes == null)
    return;
  // make a copy of the array of nodes in order to avoid
  // ConcurrentModificationException, when the block is removed from the node
  DatanodeDescriptor[] nodesCopy = nodes.toArray(new DatanodeDescriptor[0]);
  for (DatanodeDescriptor node : nodesCopy) {
    try {
      if (!invalidateBlock(new BlockToMarkCorrupt(blk, null,
            Reason.ANY), node)) {
        removedFromBlocksMap = false;
      }
    } catch (IOException e) {
      blockLog.info("invalidateCorruptReplicas error in deleting bad block"
          + " {} on {}", blk, node, e);
      removedFromBlocksMap = false;
    }
  }
  // Remove the block from corruptReplicasMap
  if (removedFromBlocksMap) {
    corruptReplicas.removeFromCorruptReplicasMap(blk);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:39,代码来源:BlockManager.java

示例2: invalidateCorruptReplicas

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
/**
 * Invalidate corrupt replicas.
 * <p>
 * This will remove the replicas from the block's location list,
 * add them to {@link #invalidateBlocks} so that they could be further
 * deleted from the respective data-nodes,
 * and remove the block from corruptReplicasMap.
 * <p>
 * This method should be called when the block has sufficient
 * number of live replicas.
 *
 * @param blk Block whose corrupt replicas need to be invalidated
 */
private void invalidateCorruptReplicas(BlockInfo blk) {
  Collection<DatanodeDescriptor> nodes = corruptReplicas.getNodes(blk);
  boolean removedFromBlocksMap = true;
  if (nodes == null)
    return;
  // make a copy of the array of nodes in order to avoid
  // ConcurrentModificationException, when the block is removed from the node
  DatanodeDescriptor[] nodesCopy = nodes.toArray(new DatanodeDescriptor[0]);
  for (DatanodeDescriptor node : nodesCopy) {
    try {
      if (!invalidateBlock(new BlockToMarkCorrupt(blk, null,
            Reason.ANY), node)) {
        removedFromBlocksMap = false;
      }
    } catch (IOException e) {
      blockLog.info("invalidateCorruptReplicas error in deleting bad block"
          + " {} on {}", blk, node, e);
      removedFromBlocksMap = false;
    }
  }
  // Remove the block from corruptReplicasMap
  if (removedFromBlocksMap) {
    corruptReplicas.removeFromCorruptReplicasMap(blk);
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:39,代码来源:BlockManager.java

示例3: invalidateCorruptReplicas

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
/**
 * Invalidate corrupt replicas.
 * <p>
 * This will remove the replicas from the block's location list,
 * add them to {@link #invalidateBlocks} so that they could be further
 * deleted from the respective data-nodes,
 * and remove the block from corruptReplicasMap.
 * <p>
 * This method should be called when the block has sufficient
 * number of live replicas.
 *
 * @param blk Block whose corrupt replicas need to be invalidated
 */
private void invalidateCorruptReplicas(BlockInfo blk) {
  Collection<DatanodeDescriptor> nodes = corruptReplicas.getNodes(blk);
  boolean removedFromBlocksMap = true;
  if (nodes == null)
    return;
  // make a copy of the array of nodes in order to avoid
  // ConcurrentModificationException, when the block is removed from the node
  DatanodeDescriptor[] nodesCopy = nodes.toArray(new DatanodeDescriptor[0]);
  for (DatanodeDescriptor node : nodesCopy) {
    try {
      if (!invalidateBlock(new BlockToMarkCorrupt(blk, null,
            Reason.ANY), node)) {
        removedFromBlocksMap = false;
      }
    } catch (IOException e) {
      blockLog.info("invalidateCorruptReplicas "
          + "error in deleting bad block " + blk + " on " + node, e);
      removedFromBlocksMap = false;
    }
  }
  // Remove the block from corruptReplicasMap
  if (removedFromBlocksMap) {
    corruptReplicas.removeFromCorruptReplicasMap(blk);
  }
}
 
开发者ID:yncxcw,项目名称:FlexMap,代码行数:39,代码来源:BlockManager.java

示例4: BlockToMarkCorrupt

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
BlockToMarkCorrupt(BlockInfoContiguous corrupted,
    BlockInfoContiguous stored, String reason,
    Reason reasonCode) {
  Preconditions.checkNotNull(corrupted, "corrupted is null");
  Preconditions.checkNotNull(stored, "stored is null");

  this.corrupted = corrupted;
  this.stored = stored;
  this.reason = reason;
  this.reasonCode = reasonCode;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:12,代码来源:BlockManager.java

示例5: invalidateCorruptReplicas

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
/**
 * Invalidate corrupt replicas.
 * <p>
 * This will remove the replicas from the block's location list,
 * add them to {@link #invalidateBlocks} so that they could be further
 * deleted from the respective data-nodes,
 * and remove the block from corruptReplicasMap.
 * <p>
 * This method should be called when the block has sufficient
 * number of live replicas.
 *
 * @param blk Block whose corrupt replicas need to be invalidated
 */
private void invalidateCorruptReplicas(BlockInfo blk, Block reported,
    NumberReplicas numberReplicas) {
  Collection<DatanodeDescriptor> nodes = corruptReplicas.getNodes(blk);
  boolean removedFromBlocksMap = true;
  if (nodes == null)
    return;
  // make a copy of the array of nodes in order to avoid
  // ConcurrentModificationException, when the block is removed from the node
  DatanodeDescriptor[] nodesCopy =
      nodes.toArray(new DatanodeDescriptor[nodes.size()]);
  for (DatanodeDescriptor node : nodesCopy) {
    try {
      if (!invalidateBlock(new BlockToMarkCorrupt(reported, blk, null,
          Reason.ANY), node, numberReplicas)) {
        removedFromBlocksMap = false;
      }
    } catch (IOException e) {
      blockLog.debug("invalidateCorruptReplicas error in deleting bad block"
          + " {} on {}", blk, node, e);
      removedFromBlocksMap = false;
    }
  }
  // Remove the block from corruptReplicasMap
  if (removedFromBlocksMap) {
    corruptReplicas.removeFromCorruptReplicasMap(blk);
  }
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:41,代码来源:BlockManager.java

示例6: BlockToMarkCorrupt

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
BlockToMarkCorrupt(BlockInfo corrupted, BlockInfo stored, String reason,
    Reason reasonCode) {
  Preconditions.checkNotNull(corrupted, "corrupted is null");
  Preconditions.checkNotNull(stored, "stored is null");

  this.corrupted = corrupted;
  this.stored = stored;
  this.reason = reason;
  this.reasonCode = reasonCode;
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:11,代码来源:BlockManager.java

示例7: addToCorruptReplicasMap

import org.apache.hadoop.hdfs.server.blockmanagement.CorruptReplicasMap.Reason; //导入依赖的package包/类
private static void addToCorruptReplicasMap(CorruptReplicasMap crm,
    Block blk, DatanodeDescriptor dn) {
  crm.addToCorruptReplicasMap(blk, dn, "TEST", Reason.NONE);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:5,代码来源:TestCorruptReplicaInfo.java


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