org.apache.hadoop.hdfs.protocol.Block.matchingIdAndGenStamp()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.apache.hadoop.hdfs.protocol.Block.matchingIdAndGenStamp()方法的一些代码示例,展示了Block.matchingIdAndGenStamp()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.matchingIdAndGenStamp()方法的具体详情如下:
包路径:org.apache.hadoop.hdfs.protocol.Block
类名称:Block
方法名:matchingIdAndGenStamp

Block.matchingIdAndGenStamp介绍

暂无

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs

final INodeFile file = fsn.checkLease(iip, clientName, fileId);
BlockInfo lastBlockInFile = file.getLastBlock();
if (!Block.matchingIdAndGenStamp(previousBlock, lastBlockInFile)) {
      src + " lastBlock=" + lastBlockInFile);
 } else if (Block.matchingIdAndGenStamp(penultimateBlock, previousBlock)) {
  if (lastBlockInFile.getNumBytes() != 0) {
   throw new IOException(

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs

if (Block.matchingIdAndGenStamp(last, realLastBlock)) {
 NameNode.stateChangeLog.info("DIR* completeFile: " +
   "request from " + holder + " to complete inode " + fileId +

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs

Block tBlk = prepareFileForTruncate(fsn, iip, clientName, clientMachine,
  file.computeFileSize() - newLength, truncateBlock);
assert Block.matchingIdAndGenStamp(tBlk, truncateBlock) &&
  tBlk.getNumBytes() == truncateBlock.getNumBytes() :
  "Should be the same block.";

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

final INodeFile pendingFile = checkLease(iip, clientName, fileId);
BlockInfoContiguous lastBlockInFile = pendingFile.getLastBlock();
if (!Block.matchingIdAndGenStamp(previousBlock, lastBlockInFile)) {
    " writing to a file with a complete previous block: src={}" +
    " lastBlock={}", src, lastBlockInFile);
 } else if (Block.matchingIdAndGenStamp(penultimateBlock, previousBlock)) {
  if (lastBlockInFile.getNumBytes() != 0) {
   throw new IOException(

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

final INodeFile pendingFile = checkLease(iip, clientName, fileId);
BlockInfoContiguous lastBlockInFile = pendingFile.getLastBlock();
if (!Block.matchingIdAndGenStamp(previousBlock, lastBlockInFile)) {
    " writing to a file with a complete previous block: src={}" +
    " lastBlock={}", src, lastBlockInFile);
 } else if (Block.matchingIdAndGenStamp(penultimateBlock, previousBlock)) {
  if (lastBlockInFile.getNumBytes() != 0) {
   throw new IOException(

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

if (Block.matchingIdAndGenStamp(last, realLastBlock)) {
 NameNode.stateChangeLog.info("DIR* completeFile: " +
   "request from " + holder + " to complete inode " + fileId +

代码示例来源:origin: ch.cern.hadoop/hadoop-hdfs

clientName, clientMachine, file.computeFileSize() - newLength,
  truncateBlock);
assert Block.matchingIdAndGenStamp(tBlk, truncateBlock) &&
  tBlk.getNumBytes() == truncateBlock.getNumBytes() :
  "Should be the same block.";

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

if (Block.matchingIdAndGenStamp(last, realLastBlock)) {
 NameNode.stateChangeLog.info("DIR* completeFile: " +
   "request from " + holder + " to complete inode " + fileId +

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

clientName, clientMachine, file.computeFileSize() - newLength,
  truncateBlock);
assert Block.matchingIdAndGenStamp(tBlk, truncateBlock) &&
  tBlk.getNumBytes() == truncateBlock.getNumBytes() :
  "Should be the same block.";

相关文章