本文整理了Java中org.apache.hadoop.hdfs.protocol.Block.matchingIdAndGenStamp()
方法的一些代码示例,展示了Block.matchingIdAndGenStamp()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.matchingIdAndGenStamp()
方法的具体详情如下:
包路径:org.apache.hadoop.hdfs.protocol.Block
类名称: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.";
内容来源于网络,如有侵权,请联系作者删除!