HDFS-8801. Convert BlockInfoUnderConstruction as a feature. Contributed by Jing Zhao.
This commit is contained in:
parent
456e901a4c
commit
e535e0f05b
|
@ -796,6 +796,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-6407. Add sorting and pagination in the datanode tab of the NN Web UI.
|
HDFS-6407. Add sorting and pagination in the datanode tab of the NN Web UI.
|
||||||
(wheat9)
|
(wheat9)
|
||||||
|
|
||||||
|
HDFS-8801. Convert BlockInfoUnderConstruction as a feature.
|
||||||
|
(Jing Zhao via wheat9)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
||||||
|
|
|
@ -79,8 +79,7 @@ public interface BlockCollection {
|
||||||
* Convert the last block of the collection to an under-construction block
|
* Convert the last block of the collection to an under-construction block
|
||||||
* and set the locations.
|
* and set the locations.
|
||||||
*/
|
*/
|
||||||
public BlockInfoContiguousUnderConstruction setLastBlock(BlockInfo lastBlock,
|
public void convertLastBlockToUC(BlockInfo lastBlock, DatanodeStorageInfo[] targets) throws IOException;
|
||||||
DatanodeStorageInfo[] targets) throws IOException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return whether the block collection is under construction.
|
* @return whether the block collection is under construction.
|
||||||
|
|
|
@ -17,11 +17,16 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hdfs.server.blockmanagement;
|
package org.apache.hadoop.hdfs.server.blockmanagement;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
import org.apache.hadoop.classification.InterfaceAudience;
|
import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockUnderConstructionFeature.ReplicaUnderConstruction;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
|
import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
||||||
import org.apache.hadoop.util.LightWeightGSet;
|
import org.apache.hadoop.util.LightWeightGSet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -32,6 +37,7 @@ import org.apache.hadoop.util.LightWeightGSet;
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.Private
|
||||||
public abstract class BlockInfo extends Block
|
public abstract class BlockInfo extends Block
|
||||||
implements LightWeightGSet.LinkedElement {
|
implements LightWeightGSet.LinkedElement {
|
||||||
|
|
||||||
public static final BlockInfo[] EMPTY_ARRAY = {};
|
public static final BlockInfo[] EMPTY_ARRAY = {};
|
||||||
|
|
||||||
private BlockCollection bc;
|
private BlockCollection bc;
|
||||||
|
@ -53,6 +59,8 @@ public abstract class BlockInfo extends Block
|
||||||
*/
|
*/
|
||||||
protected Object[] triplets;
|
protected Object[] triplets;
|
||||||
|
|
||||||
|
private BlockUnderConstructionFeature uc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct an entry for blocksmap
|
* Construct an entry for blocksmap
|
||||||
* @param replication the block's replication factor
|
* @param replication the block's replication factor
|
||||||
|
@ -181,7 +189,6 @@ public abstract class BlockInfo extends Block
|
||||||
*/
|
*/
|
||||||
abstract boolean removeStorage(DatanodeStorageInfo storage);
|
abstract boolean removeStorage(DatanodeStorageInfo storage);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replace the current BlockInfo with the new one in corresponding
|
* Replace the current BlockInfo with the new one in corresponding
|
||||||
* DatanodeStorageInfo's linked list
|
* DatanodeStorageInfo's linked list
|
||||||
|
@ -292,47 +299,6 @@ public abstract class BlockInfo extends Block
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* BlockInfo represents a block that is not being constructed.
|
|
||||||
* In order to start modifying the block, the BlockInfo should be converted
|
|
||||||
* to {@link BlockInfoContiguousUnderConstruction}.
|
|
||||||
* @return {@link BlockUCState#COMPLETE}
|
|
||||||
*/
|
|
||||||
public BlockUCState getBlockUCState() {
|
|
||||||
return BlockUCState.COMPLETE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Is this block complete?
|
|
||||||
*
|
|
||||||
* @return true if the state of the block is {@link BlockUCState#COMPLETE}
|
|
||||||
*/
|
|
||||||
public boolean isComplete() {
|
|
||||||
return getBlockUCState().equals(BlockUCState.COMPLETE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert a complete block to an under construction block.
|
|
||||||
* @return BlockInfoUnderConstruction - an under construction block.
|
|
||||||
*/
|
|
||||||
public BlockInfoContiguousUnderConstruction convertToBlockUnderConstruction(
|
|
||||||
BlockUCState s, DatanodeStorageInfo[] targets) {
|
|
||||||
if(isComplete()) {
|
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
|
||||||
new BlockInfoContiguousUnderConstruction(this,
|
|
||||||
getBlockCollection().getPreferredBlockReplication(), s, targets);
|
|
||||||
ucBlock.setBlockCollection(getBlockCollection());
|
|
||||||
return ucBlock;
|
|
||||||
}
|
|
||||||
// the block is already under construction
|
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
|
||||||
(BlockInfoContiguousUnderConstruction)this;
|
|
||||||
ucBlock.setBlockUCState(s);
|
|
||||||
ucBlock.setExpectedLocations(targets);
|
|
||||||
ucBlock.setBlockCollection(getBlockCollection());
|
|
||||||
return ucBlock;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
// Super implementation is sufficient
|
// Super implementation is sufficient
|
||||||
|
@ -354,4 +320,90 @@ public abstract class BlockInfo extends Block
|
||||||
public void setNext(LightWeightGSet.LinkedElement next) {
|
public void setNext(LightWeightGSet.LinkedElement next) {
|
||||||
this.nextLinkedElement = next;
|
this.nextLinkedElement = next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* UnderConstruction Feature related */
|
||||||
|
|
||||||
|
public BlockUnderConstructionFeature getUnderConstructionFeature() {
|
||||||
|
return uc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BlockUCState getBlockUCState() {
|
||||||
|
return uc == null ? BlockUCState.COMPLETE : uc.getBlockUCState();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Is this block complete?
|
||||||
|
*
|
||||||
|
* @return true if the state of the block is {@link BlockUCState#COMPLETE}
|
||||||
|
*/
|
||||||
|
public boolean isComplete() {
|
||||||
|
return getBlockUCState().equals(BlockUCState.COMPLETE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add/Update the under construction feature.
|
||||||
|
*/
|
||||||
|
public void convertToBlockUnderConstruction(BlockUCState s,
|
||||||
|
DatanodeStorageInfo[] targets) {
|
||||||
|
if (isComplete()) {
|
||||||
|
uc = new BlockUnderConstructionFeature(this, s, targets);
|
||||||
|
} else {
|
||||||
|
// the block is already under construction
|
||||||
|
uc.setBlockUCState(s);
|
||||||
|
uc.setExpectedLocations(this.getGenerationStamp(), targets);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert an under construction block to a complete block.
|
||||||
|
*
|
||||||
|
* @return BlockInfo - a complete block.
|
||||||
|
* @throws IOException if the state of the block
|
||||||
|
* (the generation stamp and the length) has not been committed by
|
||||||
|
* the client or it does not have at least a minimal number of replicas
|
||||||
|
* reported from data-nodes.
|
||||||
|
*/
|
||||||
|
BlockInfo convertToCompleteBlock() throws IOException {
|
||||||
|
assert getBlockUCState() != BlockUCState.COMPLETE :
|
||||||
|
"Trying to convert a COMPLETE block";
|
||||||
|
uc = null;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process the recorded replicas. When about to commit or finish the
|
||||||
|
* pipeline recovery sort out bad replicas.
|
||||||
|
* @param genStamp The final generation stamp for the block.
|
||||||
|
*/
|
||||||
|
public void setGenerationStampAndVerifyReplicas(long genStamp) {
|
||||||
|
Preconditions.checkState(uc != null && !isComplete());
|
||||||
|
// Set the generation stamp for the block.
|
||||||
|
setGenerationStamp(genStamp);
|
||||||
|
|
||||||
|
// Remove the replicas with wrong gen stamp
|
||||||
|
List<ReplicaUnderConstruction> staleReplicas = uc.getStaleReplicas(genStamp);
|
||||||
|
for (ReplicaUnderConstruction r : staleReplicas) {
|
||||||
|
r.getExpectedStorageLocation().removeBlock(this);
|
||||||
|
NameNode.blockStateChangeLog.debug("BLOCK* Removing stale replica "
|
||||||
|
+ "from location: {}", r.getExpectedStorageLocation());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Commit block's length and generation stamp as reported by the client.
|
||||||
|
* Set block state to {@link BlockUCState#COMMITTED}.
|
||||||
|
* @param block - contains client reported block length and generation
|
||||||
|
* @throws IOException if block ids are inconsistent.
|
||||||
|
*/
|
||||||
|
void commitBlock(Block block) throws IOException {
|
||||||
|
if (getBlockId() != block.getBlockId()) {
|
||||||
|
throw new IOException("Trying to commit inconsistent block: id = "
|
||||||
|
+ block.getBlockId() + ", expected id = " + getBlockId());
|
||||||
|
}
|
||||||
|
Preconditions.checkState(!isComplete());
|
||||||
|
uc.commit();
|
||||||
|
this.set(getBlockId(), block.getNumBytes(), block.getGenerationStamp());
|
||||||
|
// Sort out invalid replicas.
|
||||||
|
setGenerationStampAndVerifyReplicas(block.getGenerationStamp());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hdfs.server.blockmanagement;
|
package org.apache.hadoop.hdfs.server.blockmanagement;
|
||||||
|
|
||||||
import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_HA_NAMENODES_KEY_PREFIX;
|
|
||||||
import static org.apache.hadoop.util.ExitUtil.terminate;
|
import static org.apache.hadoop.util.ExitUtil.terminate;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -617,9 +616,8 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
* @throws IOException if the block does not have at least a minimal number
|
* @throws IOException if the block does not have at least a minimal number
|
||||||
* of replicas reported from data-nodes.
|
* of replicas reported from data-nodes.
|
||||||
*/
|
*/
|
||||||
private static boolean commitBlock(
|
private static boolean commitBlock(final BlockInfo block,
|
||||||
final BlockInfoContiguousUnderConstruction block, final Block commitBlock)
|
final Block commitBlock) throws IOException {
|
||||||
throws IOException {
|
|
||||||
if (block.getBlockUCState() == BlockUCState.COMMITTED)
|
if (block.getBlockUCState() == BlockUCState.COMMITTED)
|
||||||
return false;
|
return false;
|
||||||
assert block.getNumBytes() <= commitBlock.getNumBytes() :
|
assert block.getNumBytes() <= commitBlock.getNumBytes() :
|
||||||
|
@ -649,8 +647,7 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
if(lastBlock.isComplete())
|
if(lastBlock.isComplete())
|
||||||
return false; // already completed (e.g. by syncBlock)
|
return false; // already completed (e.g. by syncBlock)
|
||||||
|
|
||||||
final boolean b = commitBlock(
|
final boolean b = commitBlock(lastBlock, commitBlock);
|
||||||
(BlockInfoContiguousUnderConstruction) lastBlock, commitBlock);
|
|
||||||
if(countNodes(lastBlock).liveReplicas() >= minReplication)
|
if(countNodes(lastBlock).liveReplicas() >= minReplication)
|
||||||
completeBlock(bc, bc.numBlocks()-1, false);
|
completeBlock(bc, bc.numBlocks()-1, false);
|
||||||
return b;
|
return b;
|
||||||
|
@ -670,16 +667,15 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
BlockInfo curBlock = bc.getBlocks()[blkIndex];
|
BlockInfo curBlock = bc.getBlocks()[blkIndex];
|
||||||
if(curBlock.isComplete())
|
if(curBlock.isComplete())
|
||||||
return curBlock;
|
return curBlock;
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
|
||||||
(BlockInfoContiguousUnderConstruction) curBlock;
|
int numNodes = curBlock.numNodes();
|
||||||
int numNodes = ucBlock.numNodes();
|
|
||||||
if (!force && numNodes < minReplication)
|
if (!force && numNodes < minReplication)
|
||||||
throw new IOException("Cannot complete block: " +
|
throw new IOException("Cannot complete block: " +
|
||||||
"block does not satisfy minimal replication requirement.");
|
"block does not satisfy minimal replication requirement.");
|
||||||
if(!force && ucBlock.getBlockUCState() != BlockUCState.COMMITTED)
|
if(!force && curBlock.getBlockUCState() != BlockUCState.COMMITTED)
|
||||||
throw new IOException(
|
throw new IOException(
|
||||||
"Cannot complete block: block has not been COMMITTED by the client");
|
"Cannot complete block: block has not been COMMITTED by the client");
|
||||||
BlockInfo completeBlock = ucBlock.convertToCompleteBlock();
|
BlockInfo completeBlock = curBlock.convertToCompleteBlock();
|
||||||
// replace penultimate block in file
|
// replace penultimate block in file
|
||||||
bc.setBlock(blkIndex, completeBlock);
|
bc.setBlock(blkIndex, completeBlock);
|
||||||
|
|
||||||
|
@ -713,7 +709,7 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
* when tailing edit logs as a Standby.
|
* when tailing edit logs as a Standby.
|
||||||
*/
|
*/
|
||||||
public BlockInfo forceCompleteBlock(final BlockCollection bc,
|
public BlockInfo forceCompleteBlock(final BlockCollection bc,
|
||||||
final BlockInfoContiguousUnderConstruction block) throws IOException {
|
final BlockInfo block) throws IOException {
|
||||||
block.commitBlock(block);
|
block.commitBlock(block);
|
||||||
return completeBlock(bc, block, true);
|
return completeBlock(bc, block, true);
|
||||||
}
|
}
|
||||||
|
@ -735,28 +731,29 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
*/
|
*/
|
||||||
public LocatedBlock convertLastBlockToUnderConstruction(
|
public LocatedBlock convertLastBlockToUnderConstruction(
|
||||||
BlockCollection bc, long bytesToRemove) throws IOException {
|
BlockCollection bc, long bytesToRemove) throws IOException {
|
||||||
BlockInfo oldBlock = bc.getLastBlock();
|
BlockInfo lastBlock = bc.getLastBlock();
|
||||||
if(oldBlock == null ||
|
if (lastBlock == null ||
|
||||||
bc.getPreferredBlockSize() == oldBlock.getNumBytes() - bytesToRemove)
|
bc.getPreferredBlockSize() == lastBlock.getNumBytes() - bytesToRemove) {
|
||||||
return null;
|
return null;
|
||||||
assert oldBlock == getStoredBlock(oldBlock) :
|
}
|
||||||
|
assert lastBlock == getStoredBlock(lastBlock) :
|
||||||
"last block of the file is not in blocksMap";
|
"last block of the file is not in blocksMap";
|
||||||
|
|
||||||
DatanodeStorageInfo[] targets = getStorages(oldBlock);
|
DatanodeStorageInfo[] targets = getStorages(lastBlock);
|
||||||
|
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
// convert the last block to under construction. note no block replacement
|
||||||
bc.setLastBlock(oldBlock, targets);
|
// is happening
|
||||||
blocksMap.replaceBlock(ucBlock);
|
bc.convertLastBlockToUC(lastBlock, targets);
|
||||||
|
|
||||||
// Remove block from replication queue.
|
// Remove block from replication queue.
|
||||||
NumberReplicas replicas = countNodes(ucBlock);
|
NumberReplicas replicas = countNodes(lastBlock);
|
||||||
neededReplications.remove(ucBlock, replicas.liveReplicas(),
|
neededReplications.remove(lastBlock, replicas.liveReplicas(),
|
||||||
replicas.decommissionedAndDecommissioning(), getReplication(ucBlock));
|
replicas.decommissionedAndDecommissioning(), getReplication(lastBlock));
|
||||||
pendingReplications.remove(ucBlock);
|
pendingReplications.remove(lastBlock);
|
||||||
|
|
||||||
// remove this block from the list of pending blocks to be deleted.
|
// remove this block from the list of pending blocks to be deleted.
|
||||||
for (DatanodeStorageInfo storage : targets) {
|
for (DatanodeStorageInfo storage : targets) {
|
||||||
invalidateBlocks.remove(storage.getDatanodeDescriptor(), oldBlock);
|
invalidateBlocks.remove(storage.getDatanodeDescriptor(), lastBlock);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjust safe-mode totals, since under-construction blocks don't
|
// Adjust safe-mode totals, since under-construction blocks don't
|
||||||
|
@ -767,9 +764,11 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
// always decrement total blocks
|
// always decrement total blocks
|
||||||
-1);
|
-1);
|
||||||
|
|
||||||
final long fileLength = bc.computeContentSummary(getStoragePolicySuite()).getLength();
|
final long fileLength = bc.computeContentSummary(
|
||||||
final long pos = fileLength - ucBlock.getNumBytes();
|
getStoragePolicySuite()).getLength();
|
||||||
return createLocatedBlock(ucBlock, pos, BlockTokenIdentifier.AccessMode.WRITE);
|
final long pos = fileLength - lastBlock.getNumBytes();
|
||||||
|
return createLocatedBlock(lastBlock, pos,
|
||||||
|
BlockTokenIdentifier.AccessMode.WRITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -846,15 +845,9 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
/** @return a LocatedBlock for the given block */
|
/** @return a LocatedBlock for the given block */
|
||||||
private LocatedBlock createLocatedBlock(final BlockInfo blk, final long pos
|
private LocatedBlock createLocatedBlock(final BlockInfo blk, final long pos
|
||||||
) throws IOException {
|
) throws IOException {
|
||||||
if (blk instanceof BlockInfoContiguousUnderConstruction) {
|
if (!blk.isComplete()) {
|
||||||
if (blk.isComplete()) {
|
final DatanodeStorageInfo[] storages = blk.getUnderConstructionFeature()
|
||||||
throw new IOException(
|
.getExpectedStorageLocations();
|
||||||
"blk instanceof BlockInfoUnderConstruction && blk.isComplete()"
|
|
||||||
+ ", blk=" + blk);
|
|
||||||
}
|
|
||||||
final BlockInfoContiguousUnderConstruction uc =
|
|
||||||
(BlockInfoContiguousUnderConstruction) blk;
|
|
||||||
final DatanodeStorageInfo[] storages = uc.getExpectedStorageLocations();
|
|
||||||
final ExtendedBlock eb = new ExtendedBlock(namesystem.getBlockPoolId(), blk);
|
final ExtendedBlock eb = new ExtendedBlock(namesystem.getBlockPoolId(), blk);
|
||||||
return newLocatedBlock(eb, storages, pos, false);
|
return newLocatedBlock(eb, storages, pos, false);
|
||||||
}
|
}
|
||||||
|
@ -1761,12 +1754,13 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
* reported by the datanode in the block report.
|
* reported by the datanode in the block report.
|
||||||
*/
|
*/
|
||||||
static class StatefulBlockInfo {
|
static class StatefulBlockInfo {
|
||||||
final BlockInfoContiguousUnderConstruction storedBlock;
|
final BlockInfo storedBlock;
|
||||||
final Block reportedBlock;
|
final Block reportedBlock;
|
||||||
final ReplicaState reportedState;
|
final ReplicaState reportedState;
|
||||||
|
|
||||||
StatefulBlockInfo(BlockInfoContiguousUnderConstruction storedBlock,
|
StatefulBlockInfo(BlockInfo storedBlock,
|
||||||
Block reportedBlock, ReplicaState reportedState) {
|
Block reportedBlock, ReplicaState reportedState) {
|
||||||
|
Preconditions.checkArgument(!storedBlock.isComplete());
|
||||||
this.storedBlock = storedBlock;
|
this.storedBlock = storedBlock;
|
||||||
this.reportedBlock = reportedBlock;
|
this.reportedBlock = reportedBlock;
|
||||||
this.reportedState = reportedState;
|
this.reportedState = reportedState;
|
||||||
|
@ -2165,15 +2159,14 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
|
|
||||||
// If block is under construction, add this replica to its list
|
// If block is under construction, add this replica to its list
|
||||||
if (isBlockUnderConstruction(storedBlock, ucState, reportedState)) {
|
if (isBlockUnderConstruction(storedBlock, ucState, reportedState)) {
|
||||||
((BlockInfoContiguousUnderConstruction)storedBlock)
|
storedBlock.getUnderConstructionFeature()
|
||||||
.addReplicaIfNotPresent(storageInfo, iblk, reportedState);
|
.addReplicaIfNotPresent(storageInfo, iblk, reportedState);
|
||||||
// OpenFileBlocks only inside snapshots also will be added to safemode
|
// OpenFileBlocks only inside snapshots also will be added to safemode
|
||||||
// threshold. So we need to update such blocks to safemode
|
// threshold. So we need to update such blocks to safemode
|
||||||
// refer HDFS-5283
|
// refer HDFS-5283
|
||||||
BlockInfoContiguousUnderConstruction blockUC =
|
if (namesystem.isInSnapshot(storedBlock)) {
|
||||||
(BlockInfoContiguousUnderConstruction) storedBlock;
|
int numOfReplicas = storedBlock.getUnderConstructionFeature()
|
||||||
if (namesystem.isInSnapshot(blockUC)) {
|
.getNumExpectedLocations();
|
||||||
int numOfReplicas = blockUC.getNumExpectedLocations();
|
|
||||||
namesystem.incrementSafeBlockCount(numOfReplicas);
|
namesystem.incrementSafeBlockCount(numOfReplicas);
|
||||||
}
|
}
|
||||||
//and fall through to next clause
|
//and fall through to next clause
|
||||||
|
@ -2298,11 +2291,6 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
|
|
||||||
// Ignore replicas already scheduled to be removed from the DN
|
// Ignore replicas already scheduled to be removed from the DN
|
||||||
if(invalidateBlocks.contains(dn, block)) {
|
if(invalidateBlocks.contains(dn, block)) {
|
||||||
/*
|
|
||||||
* TODO: following assertion is incorrect, see HDFS-2668 assert
|
|
||||||
* storedBlock.findDatanode(dn) < 0 : "Block " + block +
|
|
||||||
* " in recentInvalidatesSet should not appear in DN " + dn;
|
|
||||||
*/
|
|
||||||
return storedBlock;
|
return storedBlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2325,8 +2313,7 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isBlockUnderConstruction(storedBlock, ucState, reportedState)) {
|
if (isBlockUnderConstruction(storedBlock, ucState, reportedState)) {
|
||||||
toUC.add(new StatefulBlockInfo(
|
toUC.add(new StatefulBlockInfo(storedBlock,
|
||||||
(BlockInfoContiguousUnderConstruction) storedBlock,
|
|
||||||
new Block(block), reportedState));
|
new Block(block), reportedState));
|
||||||
return storedBlock;
|
return storedBlock;
|
||||||
}
|
}
|
||||||
|
@ -2517,8 +2504,8 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
|
|
||||||
void addStoredBlockUnderConstruction(StatefulBlockInfo ucBlock,
|
void addStoredBlockUnderConstruction(StatefulBlockInfo ucBlock,
|
||||||
DatanodeStorageInfo storageInfo) throws IOException {
|
DatanodeStorageInfo storageInfo) throws IOException {
|
||||||
BlockInfoContiguousUnderConstruction block = ucBlock.storedBlock;
|
BlockInfo block = ucBlock.storedBlock;
|
||||||
block.addReplicaIfNotPresent(
|
block.getUnderConstructionFeature().addReplicaIfNotPresent(
|
||||||
storageInfo, ucBlock.reportedBlock, ucBlock.reportedState);
|
storageInfo, ucBlock.reportedBlock, ucBlock.reportedState);
|
||||||
|
|
||||||
if (ucBlock.reportedState == ReplicaState.FINALIZED &&
|
if (ucBlock.reportedState == ReplicaState.FINALIZED &&
|
||||||
|
@ -2578,7 +2565,7 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
assert block != null && namesystem.hasWriteLock();
|
assert block != null && namesystem.hasWriteLock();
|
||||||
BlockInfo storedBlock;
|
BlockInfo storedBlock;
|
||||||
DatanodeDescriptor node = storageInfo.getDatanodeDescriptor();
|
DatanodeDescriptor node = storageInfo.getDatanodeDescriptor();
|
||||||
if (block instanceof BlockInfoContiguousUnderConstruction) {
|
if (!block.isComplete()) {
|
||||||
//refresh our copy in case the block got completed in another thread
|
//refresh our copy in case the block got completed in another thread
|
||||||
storedBlock = blocksMap.getStoredBlock(block);
|
storedBlock = blocksMap.getStoredBlock(block);
|
||||||
} else {
|
} else {
|
||||||
|
@ -3533,11 +3520,9 @@ public class BlockManager implements BlockStatsMXBean {
|
||||||
String src, BlockInfo[] blocks) {
|
String src, BlockInfo[] blocks) {
|
||||||
for (BlockInfo b: blocks) {
|
for (BlockInfo b: blocks) {
|
||||||
if (!b.isComplete()) {
|
if (!b.isComplete()) {
|
||||||
final BlockInfoContiguousUnderConstruction uc =
|
|
||||||
(BlockInfoContiguousUnderConstruction)b;
|
|
||||||
final int numNodes = b.numNodes();
|
final int numNodes = b.numNodes();
|
||||||
LOG.info("BLOCK* " + b + " is not COMPLETE (ucState = "
|
LOG.info("BLOCK* " + b + " is not COMPLETE (ucState = "
|
||||||
+ uc.getBlockUCState() + ", replication# = " + numNodes
|
+ b.getBlockUCState() + ", replication# = " + numNodes
|
||||||
+ (numNodes < minReplication ? " < ": " >= ")
|
+ (numNodes < minReplication ? " < ": " >= ")
|
||||||
+ " minimum = " + minReplication + ") in file " + src);
|
+ " minimum = " + minReplication + ") in file " + src);
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hdfs.server.blockmanagement;
|
package org.apache.hadoop.hdfs.server.blockmanagement;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -31,7 +30,7 @@ import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
||||||
* Represents a block that is currently being constructed.<br>
|
* Represents a block that is currently being constructed.<br>
|
||||||
* This is usually the last block of a file opened for write or append.
|
* This is usually the last block of a file opened for write or append.
|
||||||
*/
|
*/
|
||||||
public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
public class BlockUnderConstructionFeature {
|
||||||
/** Block state. See {@link BlockUCState} */
|
/** Block state. See {@link BlockUCState} */
|
||||||
private BlockUCState blockUCState;
|
private BlockUCState blockUCState;
|
||||||
|
|
||||||
|
@ -67,27 +66,35 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
* It is not guaranteed, but expected, that data-nodes actually have
|
* It is not guaranteed, but expected, that data-nodes actually have
|
||||||
* corresponding replicas.
|
* corresponding replicas.
|
||||||
*/
|
*/
|
||||||
static class ReplicaUnderConstruction extends Block {
|
static class ReplicaUnderConstruction {
|
||||||
|
private long generationStamp;
|
||||||
private final DatanodeStorageInfo expectedLocation;
|
private final DatanodeStorageInfo expectedLocation;
|
||||||
private ReplicaState state;
|
private ReplicaState state;
|
||||||
private boolean chosenAsPrimary;
|
private boolean chosenAsPrimary;
|
||||||
|
|
||||||
ReplicaUnderConstruction(Block block,
|
ReplicaUnderConstruction(long generationStamp, DatanodeStorageInfo target,
|
||||||
DatanodeStorageInfo target,
|
|
||||||
ReplicaState state) {
|
ReplicaState state) {
|
||||||
super(block);
|
this.generationStamp = generationStamp;
|
||||||
this.expectedLocation = target;
|
this.expectedLocation = target;
|
||||||
this.state = state;
|
this.state = state;
|
||||||
this.chosenAsPrimary = false;
|
this.chosenAsPrimary = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
long getGenerationStamp() {
|
||||||
|
return this.generationStamp;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setGenerationStamp(long generationStamp) {
|
||||||
|
this.generationStamp = generationStamp;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expected block replica location as assigned when the block was allocated.
|
* Expected block replica location as assigned when the block was allocated.
|
||||||
* This defines the pipeline order.
|
* This defines the pipeline order.
|
||||||
* It is not guaranteed, but expected, that the data-node actually has
|
* It is not guaranteed, but expected, that the data-node actually has
|
||||||
* the replica.
|
* the replica.
|
||||||
*/
|
*/
|
||||||
private DatanodeStorageInfo getExpectedStorageLocation() {
|
DatanodeStorageInfo getExpectedStorageLocation() {
|
||||||
return expectedLocation;
|
return expectedLocation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,76 +133,38 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
return expectedLocation.getDatanodeDescriptor().isAlive;
|
return expectedLocation.getDatanodeDescriptor().isAlive;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override // Block
|
|
||||||
public int hashCode() {
|
|
||||||
return super.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override // Block
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
// Sufficient to rely on super's implementation
|
|
||||||
return (this == obj) || super.equals(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
final StringBuilder b = new StringBuilder(50);
|
final StringBuilder b = new StringBuilder(50)
|
||||||
appendStringTo(b);
|
.append("ReplicaUC[")
|
||||||
return b.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void appendStringTo(StringBuilder sb) {
|
|
||||||
sb.append("ReplicaUC[")
|
|
||||||
.append(expectedLocation)
|
.append(expectedLocation)
|
||||||
.append("|")
|
.append("|")
|
||||||
.append(state)
|
.append(state)
|
||||||
.append("]");
|
.append("]");
|
||||||
|
return b.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create block and set its state to
|
|
||||||
* {@link BlockUCState#UNDER_CONSTRUCTION}.
|
|
||||||
*/
|
|
||||||
public BlockInfoContiguousUnderConstruction(Block blk, short replication) {
|
|
||||||
this(blk, replication, BlockUCState.UNDER_CONSTRUCTION, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a block that is currently being constructed.
|
* Create a block that is currently being constructed.
|
||||||
*/
|
*/
|
||||||
public BlockInfoContiguousUnderConstruction(Block blk, short replication,
|
public BlockUnderConstructionFeature(Block block, BlockUCState state,
|
||||||
BlockUCState state, DatanodeStorageInfo[] targets) {
|
DatanodeStorageInfo[] targets) {
|
||||||
super(blk, replication);
|
|
||||||
assert getBlockUCState() != BlockUCState.COMPLETE :
|
assert getBlockUCState() != BlockUCState.COMPLETE :
|
||||||
"BlockInfoUnderConstruction cannot be in COMPLETE state";
|
"BlockInfoUnderConstruction cannot be in COMPLETE state";
|
||||||
this.blockUCState = state;
|
this.blockUCState = state;
|
||||||
setExpectedLocations(targets);
|
setExpectedLocations(block.getGenerationStamp(), targets);
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert an under construction block to a complete block.
|
|
||||||
*
|
|
||||||
* @return BlockInfo - a complete block.
|
|
||||||
* @throws IOException if the state of the block
|
|
||||||
* (the generation stamp and the length) has not been committed by
|
|
||||||
* the client or it does not have at least a minimal number of replicas
|
|
||||||
* reported from data-nodes.
|
|
||||||
*/
|
|
||||||
BlockInfo convertToCompleteBlock() throws IOException {
|
|
||||||
assert getBlockUCState() != BlockUCState.COMPLETE :
|
|
||||||
"Trying to convert a COMPLETE block";
|
|
||||||
return new BlockInfoContiguous(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set expected locations */
|
/** Set expected locations */
|
||||||
public void setExpectedLocations(DatanodeStorageInfo[] targets) {
|
public void setExpectedLocations(long generationStamp,
|
||||||
|
DatanodeStorageInfo[] targets) {
|
||||||
int numLocations = targets == null ? 0 : targets.length;
|
int numLocations = targets == null ? 0 : targets.length;
|
||||||
this.replicas = new ArrayList<ReplicaUnderConstruction>(numLocations);
|
this.replicas = new ArrayList<>(numLocations);
|
||||||
for(int i = 0; i < numLocations; i++)
|
for(int i = 0; i < numLocations; i++) {
|
||||||
replicas.add(
|
replicas.add(new ReplicaUnderConstruction(generationStamp, targets[i],
|
||||||
new ReplicaUnderConstruction(this, targets[i], ReplicaState.RBW));
|
ReplicaState.RBW));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -205,8 +174,9 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
public DatanodeStorageInfo[] getExpectedStorageLocations() {
|
public DatanodeStorageInfo[] getExpectedStorageLocations() {
|
||||||
int numLocations = replicas == null ? 0 : replicas.size();
|
int numLocations = replicas == null ? 0 : replicas.size();
|
||||||
DatanodeStorageInfo[] storages = new DatanodeStorageInfo[numLocations];
|
DatanodeStorageInfo[] storages = new DatanodeStorageInfo[numLocations];
|
||||||
for(int i = 0; i < numLocations; i++)
|
for (int i = 0; i < numLocations; i++) {
|
||||||
storages[i] = replicas.get(i).getExpectedStorageLocation();
|
storages[i] = replicas.get(i).getExpectedStorageLocation();
|
||||||
|
}
|
||||||
return storages;
|
return storages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -219,7 +189,6 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
* Return the state of the block under construction.
|
* Return the state of the block under construction.
|
||||||
* @see BlockUCState
|
* @see BlockUCState
|
||||||
*/
|
*/
|
||||||
@Override // BlockInfo
|
|
||||||
public BlockUCState getBlockUCState() {
|
public BlockUCState getBlockUCState() {
|
||||||
return blockUCState;
|
return blockUCState;
|
||||||
}
|
}
|
||||||
|
@ -243,41 +212,23 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process the recorded replicas. When about to commit or finish the
|
* Set {@link #blockUCState} to {@link BlockUCState#COMMITTED}.
|
||||||
* pipeline recovery sort out bad replicas.
|
|
||||||
* @param genStamp The final generation stamp for the block.
|
|
||||||
*/
|
*/
|
||||||
public void setGenerationStampAndVerifyReplicas(long genStamp) {
|
void commit() {
|
||||||
// Set the generation stamp for the block.
|
blockUCState = BlockUCState.COMMITTED;
|
||||||
setGenerationStamp(genStamp);
|
}
|
||||||
if (replicas == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Remove the replicas with wrong gen stamp.
|
List<ReplicaUnderConstruction> getStaleReplicas(long genStamp) {
|
||||||
// The replica list is unchanged.
|
List<ReplicaUnderConstruction> staleReplicas = new ArrayList<>();
|
||||||
|
if (replicas != null) {
|
||||||
|
// Remove replicas with wrong gen stamp. The replica list is unchanged.
|
||||||
for (ReplicaUnderConstruction r : replicas) {
|
for (ReplicaUnderConstruction r : replicas) {
|
||||||
if (genStamp != r.getGenerationStamp()) {
|
if (genStamp != r.getGenerationStamp()) {
|
||||||
r.getExpectedStorageLocation().removeBlock(this);
|
staleReplicas.add(r);
|
||||||
NameNode.blockStateChangeLog.debug("BLOCK* Removing stale replica "
|
|
||||||
+ "from location: {}", r.getExpectedStorageLocation());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return staleReplicas;
|
||||||
/**
|
|
||||||
* Commit block's length and generation stamp as reported by the client.
|
|
||||||
* Set block state to {@link BlockUCState#COMMITTED}.
|
|
||||||
* @param block - contains client reported block length and generation
|
|
||||||
* @throws IOException if block ids are inconsistent.
|
|
||||||
*/
|
|
||||||
void commitBlock(Block block) throws IOException {
|
|
||||||
if(getBlockId() != block.getBlockId())
|
|
||||||
throw new IOException("Trying to commit inconsistent block: id = "
|
|
||||||
+ block.getBlockId() + ", expected id = " + getBlockId());
|
|
||||||
blockUCState = BlockUCState.COMMITTED;
|
|
||||||
this.set(getBlockId(), block.getNumBytes(), block.getGenerationStamp());
|
|
||||||
// Sort out invalid replicas.
|
|
||||||
setGenerationStampAndVerifyReplicas(block.getGenerationStamp());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -285,7 +236,7 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
* Find the first alive data-node starting from the previous primary and
|
* Find the first alive data-node starting from the previous primary and
|
||||||
* make it primary.
|
* make it primary.
|
||||||
*/
|
*/
|
||||||
public void initializeBlockRecovery(long recoveryId) {
|
public void initializeBlockRecovery(BlockInfo block, long recoveryId) {
|
||||||
setBlockUCState(BlockUCState.UNDER_RECOVERY);
|
setBlockUCState(BlockUCState.UNDER_RECOVERY);
|
||||||
blockRecoveryId = recoveryId;
|
blockRecoveryId = recoveryId;
|
||||||
if (replicas.size() == 0) {
|
if (replicas.size() == 0) {
|
||||||
|
@ -294,17 +245,17 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
+ " No blocks found, lease removed.");
|
+ " No blocks found, lease removed.");
|
||||||
}
|
}
|
||||||
boolean allLiveReplicasTriedAsPrimary = true;
|
boolean allLiveReplicasTriedAsPrimary = true;
|
||||||
for (int i = 0; i < replicas.size(); i++) {
|
for (ReplicaUnderConstruction replica : replicas) {
|
||||||
// Check if all replicas have been tried or not.
|
// Check if all replicas have been tried or not.
|
||||||
if (replicas.get(i).isAlive()) {
|
if (replica.isAlive()) {
|
||||||
allLiveReplicasTriedAsPrimary =
|
allLiveReplicasTriedAsPrimary = allLiveReplicasTriedAsPrimary
|
||||||
(allLiveReplicasTriedAsPrimary && replicas.get(i).getChosenAsPrimary());
|
&& replica.getChosenAsPrimary();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (allLiveReplicasTriedAsPrimary) {
|
if (allLiveReplicasTriedAsPrimary) {
|
||||||
// Just set all the replicas to be chosen whether they are alive or not.
|
// Just set all the replicas to be chosen whether they are alive or not.
|
||||||
for (int i = 0; i < replicas.size(); i++) {
|
for (ReplicaUnderConstruction replica : replicas) {
|
||||||
replicas.get(i).setChosenAsPrimary(false);
|
replica.setChosenAsPrimary(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
long mostRecentLastUpdate = 0;
|
long mostRecentLastUpdate = 0;
|
||||||
|
@ -325,15 +276,15 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (primary != null) {
|
if (primary != null) {
|
||||||
primary.getExpectedStorageLocation().getDatanodeDescriptor().addBlockToBeRecovered(this);
|
primary.getExpectedStorageLocation().getDatanodeDescriptor()
|
||||||
|
.addBlockToBeRecovered(block);
|
||||||
primary.setChosenAsPrimary(true);
|
primary.setChosenAsPrimary(true);
|
||||||
NameNode.blockStateChangeLog.debug(
|
NameNode.blockStateChangeLog.debug(
|
||||||
"BLOCK* {} recovery started, primary={}", this, primary);
|
"BLOCK* {} recovery started, primary={}", this, primary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void addReplicaIfNotPresent(DatanodeStorageInfo storage,
|
void addReplicaIfNotPresent(DatanodeStorageInfo storage, Block block,
|
||||||
Block block,
|
|
||||||
ReplicaState rState) {
|
ReplicaState rState) {
|
||||||
Iterator<ReplicaUnderConstruction> it = replicas.iterator();
|
Iterator<ReplicaUnderConstruction> it = replicas.iterator();
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
|
@ -346,7 +297,6 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
} else if (expectedLocation != null &&
|
} else if (expectedLocation != null &&
|
||||||
expectedLocation.getDatanodeDescriptor() ==
|
expectedLocation.getDatanodeDescriptor() ==
|
||||||
storage.getDatanodeDescriptor()) {
|
storage.getDatanodeDescriptor()) {
|
||||||
|
|
||||||
// The Datanode reported that the block is on a different storage
|
// The Datanode reported that the block is on a different storage
|
||||||
// than the one chosen by BlockPlacementPolicy. This can occur as
|
// than the one chosen by BlockPlacementPolicy. This can occur as
|
||||||
// we allow Datanodes to choose the target storage. Update our
|
// we allow Datanodes to choose the target storage. Update our
|
||||||
|
@ -355,46 +305,28 @@ public class BlockInfoContiguousUnderConstruction extends BlockInfoContiguous {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
replicas.add(new ReplicaUnderConstruction(block, storage, rState));
|
replicas.add(new ReplicaUnderConstruction(block.getGenerationStamp(), storage, rState));
|
||||||
}
|
|
||||||
|
|
||||||
@Override // BlockInfo
|
|
||||||
// BlockInfoUnderConstruction participates in maps the same way as BlockInfo
|
|
||||||
public int hashCode() {
|
|
||||||
return super.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override // BlockInfo
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
// Sufficient to rely on super's implementation
|
|
||||||
return (this == obj) || super.equals(obj);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
final StringBuilder b = new StringBuilder(100);
|
final StringBuilder b = new StringBuilder(100);
|
||||||
appendStringTo(b);
|
appendUCParts(b);
|
||||||
return b.toString();
|
return b.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void appendStringTo(StringBuilder sb) {
|
|
||||||
super.appendStringTo(sb);
|
|
||||||
appendUCParts(sb);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void appendUCParts(StringBuilder sb) {
|
private void appendUCParts(StringBuilder sb) {
|
||||||
sb.append("{UCState=").append(blockUCState)
|
sb.append("{UCState=").append(blockUCState)
|
||||||
.append(", truncateBlock=" + truncateBlock)
|
.append(", truncateBlock=").append(truncateBlock)
|
||||||
.append(", primaryNodeIndex=").append(primaryNodeIndex)
|
.append(", primaryNodeIndex=").append(primaryNodeIndex)
|
||||||
.append(", replicas=[");
|
.append(", replicas=[");
|
||||||
if (replicas != null) {
|
if (replicas != null) {
|
||||||
Iterator<ReplicaUnderConstruction> iter = replicas.iterator();
|
Iterator<ReplicaUnderConstruction> iter = replicas.iterator();
|
||||||
if (iter.hasNext()) {
|
if (iter.hasNext()) {
|
||||||
iter.next().appendStringTo(sb);
|
sb.append(iter.next());
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
sb.append(", ");
|
sb.append(", ");
|
||||||
iter.next().appendStringTo(sb);
|
sb.append(iter.next());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -222,8 +222,7 @@ public class DatanodeDescriptor extends DatanodeInfo {
|
||||||
private final BlockQueue<BlockTargetPair> replicateBlocks =
|
private final BlockQueue<BlockTargetPair> replicateBlocks =
|
||||||
new BlockQueue<>();
|
new BlockQueue<>();
|
||||||
/** A queue of blocks to be recovered by this datanode */
|
/** A queue of blocks to be recovered by this datanode */
|
||||||
private final BlockQueue<BlockInfoContiguousUnderConstruction> recoverBlocks =
|
private final BlockQueue<BlockInfo> recoverBlocks = new BlockQueue<>();
|
||||||
new BlockQueue<BlockInfoContiguousUnderConstruction>();
|
|
||||||
/** A set of blocks to be invalidated by this datanode */
|
/** A set of blocks to be invalidated by this datanode */
|
||||||
private final LightWeightHashSet<Block> invalidateBlocks =
|
private final LightWeightHashSet<Block> invalidateBlocks =
|
||||||
new LightWeightHashSet<>();
|
new LightWeightHashSet<>();
|
||||||
|
@ -602,7 +601,7 @@ public class DatanodeDescriptor extends DatanodeInfo {
|
||||||
/**
|
/**
|
||||||
* Store block recovery work.
|
* Store block recovery work.
|
||||||
*/
|
*/
|
||||||
void addBlockToBeRecovered(BlockInfoContiguousUnderConstruction block) {
|
void addBlockToBeRecovered(BlockInfo block) {
|
||||||
if(recoverBlocks.contains(block)) {
|
if(recoverBlocks.contains(block)) {
|
||||||
// this prevents adding the same block twice to the recovery queue
|
// this prevents adding the same block twice to the recovery queue
|
||||||
BlockManager.LOG.info(block + " is already in the recovery queue");
|
BlockManager.LOG.info(block + " is already in the recovery queue");
|
||||||
|
@ -644,11 +643,11 @@ public class DatanodeDescriptor extends DatanodeInfo {
|
||||||
return replicateBlocks.poll(maxTransfers);
|
return replicateBlocks.poll(maxTransfers);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlockInfoContiguousUnderConstruction[] getLeaseRecoveryCommand(int maxTransfers) {
|
public BlockInfo[] getLeaseRecoveryCommand(int maxTransfers) {
|
||||||
List<BlockInfoContiguousUnderConstruction> blocks = recoverBlocks.poll(maxTransfers);
|
List<BlockInfo> blocks = recoverBlocks.poll(maxTransfers);
|
||||||
if(blocks == null)
|
if(blocks == null)
|
||||||
return null;
|
return null;
|
||||||
return blocks.toArray(new BlockInfoContiguousUnderConstruction[blocks.size()]);
|
return blocks.toArray(new BlockInfo[blocks.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1380,13 +1380,14 @@ public class DatanodeManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
//check lease recovery
|
//check lease recovery
|
||||||
BlockInfoContiguousUnderConstruction[] blocks = nodeinfo
|
BlockInfo[] blocks = nodeinfo.getLeaseRecoveryCommand(Integer.MAX_VALUE);
|
||||||
.getLeaseRecoveryCommand(Integer.MAX_VALUE);
|
|
||||||
if (blocks != null) {
|
if (blocks != null) {
|
||||||
BlockRecoveryCommand brCommand = new BlockRecoveryCommand(
|
BlockRecoveryCommand brCommand = new BlockRecoveryCommand(
|
||||||
blocks.length);
|
blocks.length);
|
||||||
for (BlockInfoContiguousUnderConstruction b : blocks) {
|
for (BlockInfo b : blocks) {
|
||||||
final DatanodeStorageInfo[] storages = b.getExpectedStorageLocations();
|
BlockUnderConstructionFeature uc = b.getUnderConstructionFeature();
|
||||||
|
assert uc != null;
|
||||||
|
final DatanodeStorageInfo[] storages = uc.getExpectedStorageLocations();
|
||||||
// Skip stale nodes during recovery - not heart beated for some time (30s by default).
|
// Skip stale nodes during recovery - not heart beated for some time (30s by default).
|
||||||
final List<DatanodeStorageInfo> recoveryLocations =
|
final List<DatanodeStorageInfo> recoveryLocations =
|
||||||
new ArrayList<>(storages.length);
|
new ArrayList<>(storages.length);
|
||||||
|
@ -1397,11 +1398,11 @@ public class DatanodeManager {
|
||||||
}
|
}
|
||||||
// If we are performing a truncate recovery than set recovery fields
|
// If we are performing a truncate recovery than set recovery fields
|
||||||
// to old block.
|
// to old block.
|
||||||
boolean truncateRecovery = b.getTruncateBlock() != null;
|
boolean truncateRecovery = uc.getTruncateBlock() != null;
|
||||||
boolean copyOnTruncateRecovery = truncateRecovery &&
|
boolean copyOnTruncateRecovery = truncateRecovery &&
|
||||||
b.getTruncateBlock().getBlockId() != b.getBlockId();
|
uc.getTruncateBlock().getBlockId() != b.getBlockId();
|
||||||
ExtendedBlock primaryBlock = (copyOnTruncateRecovery) ?
|
ExtendedBlock primaryBlock = (copyOnTruncateRecovery) ?
|
||||||
new ExtendedBlock(blockPoolId, b.getTruncateBlock()) :
|
new ExtendedBlock(blockPoolId, uc.getTruncateBlock()) :
|
||||||
new ExtendedBlock(blockPoolId, b);
|
new ExtendedBlock(blockPoolId, b);
|
||||||
// If we only get 1 replica after eliminating stale nodes, then choose all
|
// If we only get 1 replica after eliminating stale nodes, then choose all
|
||||||
// replicas for recovery and let the primary data node handle failures.
|
// replicas for recovery and let the primary data node handle failures.
|
||||||
|
@ -1420,12 +1421,12 @@ public class DatanodeManager {
|
||||||
}
|
}
|
||||||
if(truncateRecovery) {
|
if(truncateRecovery) {
|
||||||
Block recoveryBlock = (copyOnTruncateRecovery) ? b :
|
Block recoveryBlock = (copyOnTruncateRecovery) ? b :
|
||||||
b.getTruncateBlock();
|
uc.getTruncateBlock();
|
||||||
brCommand.add(new RecoveringBlock(primaryBlock, recoveryInfos,
|
brCommand.add(new RecoveringBlock(primaryBlock, recoveryInfos,
|
||||||
recoveryBlock));
|
recoveryBlock));
|
||||||
} else {
|
} else {
|
||||||
brCommand.add(new RecoveringBlock(primaryBlock, recoveryInfos,
|
brCommand.add(new RecoveringBlock(primaryBlock, recoveryInfos,
|
||||||
b.getBlockRecoveryId()));
|
uc.getBlockRecoveryId()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return new DatanodeCommand[] { brCommand };
|
return new DatanodeCommand[] { brCommand };
|
||||||
|
|
|
@ -28,8 +28,9 @@ import org.apache.hadoop.hdfs.protocol.HdfsFileStatus;
|
||||||
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
||||||
import org.apache.hadoop.hdfs.protocol.SnapshotAccessControlException;
|
import org.apache.hadoop.hdfs.protocol.SnapshotAccessControlException;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockUnderConstructionFeature;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem.RecoverLeaseOp;
|
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem.RecoverLeaseOp;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
||||||
|
@ -95,7 +96,7 @@ final class FSDirTruncateOp {
|
||||||
final BlockInfo last = file.getLastBlock();
|
final BlockInfo last = file.getLastBlock();
|
||||||
if (last != null && last.getBlockUCState()
|
if (last != null && last.getBlockUCState()
|
||||||
== BlockUCState.UNDER_RECOVERY) {
|
== BlockUCState.UNDER_RECOVERY) {
|
||||||
final Block truncatedBlock = ((BlockInfoContiguousUnderConstruction) last)
|
final Block truncatedBlock = last.getUnderConstructionFeature()
|
||||||
.getTruncateBlock();
|
.getTruncateBlock();
|
||||||
if (truncatedBlock != null) {
|
if (truncatedBlock != null) {
|
||||||
final long truncateLength = file.computeFileSize(false, false)
|
final long truncateLength = file.computeFileSize(false, false)
|
||||||
|
@ -222,42 +223,42 @@ final class FSDirTruncateOp {
|
||||||
oldBlock)));
|
oldBlock)));
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockInfoContiguousUnderConstruction truncatedBlockUC;
|
final BlockInfo truncatedBlockUC;
|
||||||
BlockManager blockManager = fsn.getFSDirectory().getBlockManager();
|
BlockManager blockManager = fsn.getFSDirectory().getBlockManager();
|
||||||
if (shouldCopyOnTruncate) {
|
if (shouldCopyOnTruncate) {
|
||||||
// Add new truncateBlock into blocksMap and
|
// Add new truncateBlock into blocksMap and
|
||||||
// use oldBlock as a source for copy-on-truncate recovery
|
// use oldBlock as a source for copy-on-truncate recovery
|
||||||
truncatedBlockUC = new BlockInfoContiguousUnderConstruction(newBlock,
|
truncatedBlockUC = new BlockInfoContiguous(newBlock,
|
||||||
file.getPreferredBlockReplication());
|
file.getPreferredBlockReplication());
|
||||||
|
truncatedBlockUC.convertToBlockUnderConstruction(
|
||||||
|
BlockUCState.UNDER_CONSTRUCTION, blockManager.getStorages(oldBlock));
|
||||||
truncatedBlockUC.setNumBytes(oldBlock.getNumBytes() - lastBlockDelta);
|
truncatedBlockUC.setNumBytes(oldBlock.getNumBytes() - lastBlockDelta);
|
||||||
truncatedBlockUC.setTruncateBlock(oldBlock);
|
truncatedBlockUC.getUnderConstructionFeature().setTruncateBlock(oldBlock);
|
||||||
file.setLastBlock(truncatedBlockUC, blockManager.getStorages(oldBlock));
|
file.setLastBlock(truncatedBlockUC);
|
||||||
blockManager.addBlockCollection(truncatedBlockUC, file);
|
blockManager.addBlockCollection(truncatedBlockUC, file);
|
||||||
|
|
||||||
NameNode.stateChangeLog.debug(
|
NameNode.stateChangeLog.debug(
|
||||||
"BLOCK* prepareFileForTruncate: Scheduling copy-on-truncate to new"
|
"BLOCK* prepareFileForTruncate: Scheduling copy-on-truncate to new"
|
||||||
+ " size {} new block {} old block {}",
|
+ " size {} new block {} old block {}",
|
||||||
truncatedBlockUC.getNumBytes(), newBlock,
|
truncatedBlockUC.getNumBytes(), newBlock, oldBlock);
|
||||||
truncatedBlockUC.getTruncateBlock());
|
|
||||||
} else {
|
} else {
|
||||||
// Use new generation stamp for in-place truncate recovery
|
// Use new generation stamp for in-place truncate recovery
|
||||||
blockManager.convertLastBlockToUnderConstruction(file, lastBlockDelta);
|
blockManager.convertLastBlockToUnderConstruction(file, lastBlockDelta);
|
||||||
oldBlock = file.getLastBlock();
|
oldBlock = file.getLastBlock();
|
||||||
assert !oldBlock.isComplete() : "oldBlock should be under construction";
|
assert !oldBlock.isComplete() : "oldBlock should be under construction";
|
||||||
truncatedBlockUC = (BlockInfoContiguousUnderConstruction) oldBlock;
|
BlockUnderConstructionFeature uc = oldBlock.getUnderConstructionFeature();
|
||||||
truncatedBlockUC.setTruncateBlock(new Block(oldBlock));
|
uc.setTruncateBlock(new Block(oldBlock));
|
||||||
truncatedBlockUC.getTruncateBlock().setNumBytes(
|
uc.getTruncateBlock().setNumBytes(oldBlock.getNumBytes() - lastBlockDelta);
|
||||||
oldBlock.getNumBytes() - lastBlockDelta);
|
uc.getTruncateBlock().setGenerationStamp(newBlock.getGenerationStamp());
|
||||||
truncatedBlockUC.getTruncateBlock().setGenerationStamp(
|
truncatedBlockUC = oldBlock;
|
||||||
newBlock.getGenerationStamp());
|
|
||||||
|
|
||||||
NameNode.stateChangeLog.debug(
|
NameNode.stateChangeLog.debug("BLOCK* prepareFileForTruncate: " +
|
||||||
"BLOCK* prepareFileForTruncate: {} Scheduling in-place block "
|
"{} Scheduling in-place block truncate to new size {}",
|
||||||
+ "truncate to new size {}", truncatedBlockUC.getTruncateBlock()
|
uc, uc.getTruncateBlock().getNumBytes());
|
||||||
.getNumBytes(), truncatedBlockUC);
|
|
||||||
}
|
}
|
||||||
if (shouldRecoverNow) {
|
if (shouldRecoverNow) {
|
||||||
truncatedBlockUC.initializeBlockRecovery(newBlock.getGenerationStamp());
|
truncatedBlockUC.getUnderConstructionFeature().initializeBlockRecovery(
|
||||||
|
truncatedBlockUC, newBlock.getGenerationStamp());
|
||||||
}
|
}
|
||||||
|
|
||||||
return newBlock;
|
return newBlock;
|
||||||
|
|
|
@ -43,8 +43,9 @@ import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
||||||
import org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier;
|
import org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockUnderConstructionFeature;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.snapshot.Snapshot;
|
import org.apache.hadoop.hdfs.server.namenode.snapshot.Snapshot;
|
||||||
|
@ -73,7 +74,7 @@ class FSDirWriteFileOp {
|
||||||
Block block) throws IOException {
|
Block block) throws IOException {
|
||||||
// modify file-> block and blocksMap
|
// modify file-> block and blocksMap
|
||||||
// fileNode should be under construction
|
// fileNode should be under construction
|
||||||
BlockInfoContiguousUnderConstruction uc = fileNode.removeLastBlock(block);
|
BlockInfo uc = fileNode.removeLastBlock(block);
|
||||||
if (uc == null) {
|
if (uc == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -236,8 +237,7 @@ class FSDirWriteFileOp {
|
||||||
} else {
|
} else {
|
||||||
// add new chosen targets to already allocated block and return
|
// add new chosen targets to already allocated block and return
|
||||||
BlockInfo lastBlockInFile = pendingFile.getLastBlock();
|
BlockInfo lastBlockInFile = pendingFile.getLastBlock();
|
||||||
((BlockInfoContiguousUnderConstruction) lastBlockInFile)
|
lastBlockInFile.getUnderConstructionFeature().setExpectedLocations(lastBlockInFile.getGenerationStamp(), targets);
|
||||||
.setExpectedLocations(targets);
|
|
||||||
offset = pendingFile.computeFileSize();
|
offset = pendingFile.computeFileSize();
|
||||||
return makeLocatedBlock(fsn, lastBlockInFile, targets, offset);
|
return makeLocatedBlock(fsn, lastBlockInFile, targets, offset);
|
||||||
}
|
}
|
||||||
|
@ -520,12 +520,10 @@ class FSDirWriteFileOp {
|
||||||
fileINode.getPreferredBlockReplication(), true);
|
fileINode.getPreferredBlockReplication(), true);
|
||||||
|
|
||||||
// associate new last block for the file
|
// associate new last block for the file
|
||||||
BlockInfoContiguousUnderConstruction blockInfo =
|
BlockInfo blockInfo = new BlockInfoContiguous(block,
|
||||||
new BlockInfoContiguousUnderConstruction(
|
fileINode.getFileReplication());
|
||||||
block,
|
blockInfo.convertToBlockUnderConstruction(
|
||||||
fileINode.getFileReplication(),
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, targets);
|
||||||
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION,
|
|
||||||
targets);
|
|
||||||
fsd.getBlockManager().addBlockCollection(blockInfo, fileINode);
|
fsd.getBlockManager().addBlockCollection(blockInfo, fileINode);
|
||||||
fileINode.addBlock(blockInfo);
|
fileINode.addBlock(blockInfo);
|
||||||
|
|
||||||
|
@ -662,10 +660,10 @@ class FSDirWriteFileOp {
|
||||||
"allocation of a new block in " + src + ". Returning previously" +
|
"allocation of a new block in " + src + ". Returning previously" +
|
||||||
" allocated block " + lastBlockInFile);
|
" allocated block " + lastBlockInFile);
|
||||||
long offset = file.computeFileSize();
|
long offset = file.computeFileSize();
|
||||||
BlockInfoContiguousUnderConstruction lastBlockUC =
|
BlockUnderConstructionFeature uc =
|
||||||
(BlockInfoContiguousUnderConstruction) lastBlockInFile;
|
lastBlockInFile.getUnderConstructionFeature();
|
||||||
onRetryBlock[0] = makeLocatedBlock(fsn, lastBlockInFile,
|
onRetryBlock[0] = makeLocatedBlock(fsn, lastBlockInFile,
|
||||||
lastBlockUC.getExpectedStorageLocations(), offset);
|
uc.getExpectedStorageLocations(), offset);
|
||||||
return new FileState(file, src, iip);
|
return new FileState(file, src, iip);
|
||||||
} else {
|
} else {
|
||||||
// Case 3
|
// Case 3
|
||||||
|
|
|
@ -45,7 +45,6 @@ import org.apache.hadoop.hdfs.protocol.LastBlockWithStatus;
|
||||||
import org.apache.hadoop.hdfs.protocol.LayoutVersion;
|
import org.apache.hadoop.hdfs.protocol.LayoutVersion;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.RollingUpgradeStartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.RollingUpgradeStartupOption;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
||||||
|
@ -950,7 +949,7 @@ public class FSEditLogLoader {
|
||||||
if (pBlock != null) { // the penultimate block is not null
|
if (pBlock != null) { // the penultimate block is not null
|
||||||
Preconditions.checkState(oldBlocks != null && oldBlocks.length > 0);
|
Preconditions.checkState(oldBlocks != null && oldBlocks.length > 0);
|
||||||
// compare pBlock with the last block of oldBlocks
|
// compare pBlock with the last block of oldBlocks
|
||||||
Block oldLastBlock = oldBlocks[oldBlocks.length - 1];
|
BlockInfo oldLastBlock = oldBlocks[oldBlocks.length - 1];
|
||||||
if (oldLastBlock.getBlockId() != pBlock.getBlockId()
|
if (oldLastBlock.getBlockId() != pBlock.getBlockId()
|
||||||
|| oldLastBlock.getGenerationStamp() != pBlock.getGenerationStamp()) {
|
|| oldLastBlock.getGenerationStamp() != pBlock.getGenerationStamp()) {
|
||||||
throw new IOException(
|
throw new IOException(
|
||||||
|
@ -960,17 +959,18 @@ public class FSEditLogLoader {
|
||||||
}
|
}
|
||||||
|
|
||||||
oldLastBlock.setNumBytes(pBlock.getNumBytes());
|
oldLastBlock.setNumBytes(pBlock.getNumBytes());
|
||||||
if (oldLastBlock instanceof BlockInfoContiguousUnderConstruction) {
|
if (!oldLastBlock.isComplete()) {
|
||||||
fsNamesys.getBlockManager().forceCompleteBlock(file,
|
fsNamesys.getBlockManager().forceCompleteBlock(file, oldLastBlock);
|
||||||
(BlockInfoContiguousUnderConstruction) oldLastBlock);
|
|
||||||
fsNamesys.getBlockManager().processQueuedMessagesForBlock(pBlock);
|
fsNamesys.getBlockManager().processQueuedMessagesForBlock(pBlock);
|
||||||
}
|
}
|
||||||
} else { // the penultimate block is null
|
} else { // the penultimate block is null
|
||||||
Preconditions.checkState(oldBlocks == null || oldBlocks.length == 0);
|
Preconditions.checkState(oldBlocks == null || oldBlocks.length == 0);
|
||||||
}
|
}
|
||||||
// add the new block
|
// add the new block
|
||||||
BlockInfo newBI = new BlockInfoContiguousUnderConstruction(
|
BlockInfo newBI = new BlockInfoContiguous(newBlock,
|
||||||
newBlock, file.getPreferredBlockReplication());
|
file.getPreferredBlockReplication());
|
||||||
|
newBI.convertToBlockUnderConstruction(
|
||||||
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, null);
|
||||||
fsNamesys.getBlockManager().addBlockCollection(newBI, file);
|
fsNamesys.getBlockManager().addBlockCollection(newBI, file);
|
||||||
file.addBlock(newBI);
|
file.addBlock(newBI);
|
||||||
fsNamesys.getBlockManager().processQueuedMessagesForBlock(newBlock);
|
fsNamesys.getBlockManager().processQueuedMessagesForBlock(newBlock);
|
||||||
|
@ -1010,11 +1010,10 @@ public class FSEditLogLoader {
|
||||||
oldBlock.getGenerationStamp() != newBlock.getGenerationStamp();
|
oldBlock.getGenerationStamp() != newBlock.getGenerationStamp();
|
||||||
oldBlock.setGenerationStamp(newBlock.getGenerationStamp());
|
oldBlock.setGenerationStamp(newBlock.getGenerationStamp());
|
||||||
|
|
||||||
if (oldBlock instanceof BlockInfoContiguousUnderConstruction &&
|
if (!oldBlock.isComplete() &&
|
||||||
(!isLastBlock || op.shouldCompleteLastBlock())) {
|
(!isLastBlock || op.shouldCompleteLastBlock())) {
|
||||||
changeMade = true;
|
changeMade = true;
|
||||||
fsNamesys.getBlockManager().forceCompleteBlock(file,
|
fsNamesys.getBlockManager().forceCompleteBlock(file, oldBlock);
|
||||||
(BlockInfoContiguousUnderConstruction) oldBlock);
|
|
||||||
}
|
}
|
||||||
if (changeMade) {
|
if (changeMade) {
|
||||||
// The state or gen-stamp of the block has changed. So, we may be
|
// The state or gen-stamp of the block has changed. So, we may be
|
||||||
|
@ -1049,8 +1048,10 @@ public class FSEditLogLoader {
|
||||||
// TODO: shouldn't this only be true for the last block?
|
// TODO: shouldn't this only be true for the last block?
|
||||||
// what about an old-version fsync() where fsync isn't called
|
// what about an old-version fsync() where fsync isn't called
|
||||||
// until several blocks in?
|
// until several blocks in?
|
||||||
newBI = new BlockInfoContiguousUnderConstruction(
|
newBI = new BlockInfoContiguous(newBlock,
|
||||||
newBlock, file.getPreferredBlockReplication());
|
file.getPreferredBlockReplication());
|
||||||
|
newBI.convertToBlockUnderConstruction(
|
||||||
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, null);
|
||||||
} else {
|
} else {
|
||||||
// OP_CLOSE should add finalized blocks. This code path
|
// OP_CLOSE should add finalized blocks. This code path
|
||||||
// is only executed when loading edits written by prior
|
// is only executed when loading edits written by prior
|
||||||
|
|
|
@ -54,7 +54,6 @@ import org.apache.hadoop.hdfs.protocol.LayoutVersion;
|
||||||
import org.apache.hadoop.hdfs.protocol.LayoutVersion.Feature;
|
import org.apache.hadoop.hdfs.protocol.LayoutVersion.Feature;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
||||||
|
@ -777,8 +776,8 @@ public class FSImageFormat {
|
||||||
// convert the last block to BlockUC
|
// convert the last block to BlockUC
|
||||||
if (blocks.length > 0) {
|
if (blocks.length > 0) {
|
||||||
BlockInfo lastBlk = blocks[blocks.length - 1];
|
BlockInfo lastBlk = blocks[blocks.length - 1];
|
||||||
blocks[blocks.length - 1] = new BlockInfoContiguousUnderConstruction(
|
lastBlk.convertToBlockUnderConstruction(
|
||||||
lastBlk, replication);
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,8 +44,8 @@ import org.apache.hadoop.hdfs.protocol.proto.HdfsProtos.BlockProto;
|
||||||
import org.apache.hadoop.hdfs.protocolPB.PBHelper;
|
import org.apache.hadoop.hdfs.protocolPB.PBHelper;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FSImageFormatProtobuf.LoaderContext;
|
import org.apache.hadoop.hdfs.server.namenode.FSImageFormatProtobuf.LoaderContext;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FSImageFormatProtobuf.SaverContext;
|
import org.apache.hadoop.hdfs.server.namenode.FSImageFormatProtobuf.SaverContext;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FsImageProto.FileSummary;
|
import org.apache.hadoop.hdfs.server.namenode.FsImageProto.FileSummary;
|
||||||
|
@ -363,9 +363,8 @@ public final class FSImageFormatPBINode {
|
||||||
file.toUnderConstruction(uc.getClientName(), uc.getClientMachine());
|
file.toUnderConstruction(uc.getClientName(), uc.getClientMachine());
|
||||||
if (blocks.length > 0) {
|
if (blocks.length > 0) {
|
||||||
BlockInfo lastBlk = file.getLastBlock();
|
BlockInfo lastBlk = file.getLastBlock();
|
||||||
// replace the last block of file
|
lastBlk.convertToBlockUnderConstruction(
|
||||||
file.setBlock(file.numBlocks() - 1, new BlockInfoContiguousUnderConstruction(
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, null);
|
||||||
lastBlk, replication));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return file;
|
return file;
|
||||||
|
|
|
@ -35,7 +35,6 @@ import org.apache.hadoop.hdfs.protocol.CachePoolInfo;
|
||||||
import org.apache.hadoop.hdfs.protocol.LayoutVersion;
|
import org.apache.hadoop.hdfs.protocol.LayoutVersion;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotFSImageFormat;
|
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotFSImageFormat;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotFSImageFormat.ReferenceMap;
|
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotFSImageFormat.ReferenceMap;
|
||||||
|
@ -137,8 +136,9 @@ public class FSImageSerialization {
|
||||||
// last block is UNDER_CONSTRUCTION
|
// last block is UNDER_CONSTRUCTION
|
||||||
if(numBlocks > 0) {
|
if(numBlocks > 0) {
|
||||||
blk.readFields(in);
|
blk.readFields(in);
|
||||||
blocks[i] = new BlockInfoContiguousUnderConstruction(
|
blocks[i] = new BlockInfoContiguous(blk, blockReplication);
|
||||||
blk, blockReplication, BlockUCState.UNDER_CONSTRUCTION, null);
|
blocks[i].convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION,
|
||||||
|
null);
|
||||||
}
|
}
|
||||||
PermissionStatus perm = PermissionStatus.read(in);
|
PermissionStatus perm = PermissionStatus.read(in);
|
||||||
String clientName = readString(in);
|
String clientName = readString(in);
|
||||||
|
@ -180,9 +180,9 @@ public class FSImageSerialization {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serialize a {@link INodeFile} node
|
* Serialize a {@link INodeFile} node
|
||||||
* @param node The node to write
|
* @param file The INodeFile to write
|
||||||
* @param out The {@link DataOutputStream} where the fields are written
|
* @param out The {@link DataOutputStream} where the fields are written
|
||||||
* @param writeBlock Whether to write block information
|
* @param writeUnderConstruction Whether to write under construction information
|
||||||
*/
|
*/
|
||||||
public static void writeINodeFile(INodeFile file, DataOutput out,
|
public static void writeINodeFile(INodeFile file, DataOutput out,
|
||||||
boolean writeUnderConstruction) throws IOException {
|
boolean writeUnderConstruction) throws IOException {
|
||||||
|
|
|
@ -142,7 +142,6 @@ import org.apache.hadoop.fs.BatchedRemoteIterator.BatchedListEntries;
|
||||||
import org.apache.hadoop.fs.CacheFlag;
|
import org.apache.hadoop.fs.CacheFlag;
|
||||||
import org.apache.hadoop.fs.ContentSummary;
|
import org.apache.hadoop.fs.ContentSummary;
|
||||||
import org.apache.hadoop.fs.CreateFlag;
|
import org.apache.hadoop.fs.CreateFlag;
|
||||||
import org.apache.hadoop.fs.FileAlreadyExistsException;
|
|
||||||
import org.apache.hadoop.fs.FileStatus;
|
import org.apache.hadoop.fs.FileStatus;
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
import org.apache.hadoop.fs.FsServerDefaults;
|
import org.apache.hadoop.fs.FsServerDefaults;
|
||||||
|
@ -199,8 +198,8 @@ import org.apache.hadoop.hdfs.security.token.delegation.DelegationTokenSecretMan
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockIdManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockIdManager;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockUnderConstructionFeature;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeManager;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStatistics;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStatistics;
|
||||||
|
@ -3059,8 +3058,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
BlockInfo penultimateBlock = pendingFile.getPenultimateBlock();
|
BlockInfo penultimateBlock = pendingFile.getPenultimateBlock();
|
||||||
|
|
||||||
// If penultimate block doesn't exist then its minReplication is met
|
// If penultimate block doesn't exist then its minReplication is met
|
||||||
boolean penultimateBlockMinReplication = penultimateBlock == null ? true :
|
boolean penultimateBlockMinReplication = penultimateBlock == null
|
||||||
blockManager.checkMinReplication(penultimateBlock);
|
|| blockManager.checkMinReplication(penultimateBlock);
|
||||||
|
|
||||||
switch(lastBlockState) {
|
switch(lastBlockState) {
|
||||||
case COMPLETE:
|
case COMPLETE:
|
||||||
|
@ -3089,24 +3088,25 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
throw new AlreadyBeingCreatedException(message);
|
throw new AlreadyBeingCreatedException(message);
|
||||||
case UNDER_CONSTRUCTION:
|
case UNDER_CONSTRUCTION:
|
||||||
case UNDER_RECOVERY:
|
case UNDER_RECOVERY:
|
||||||
final BlockInfoContiguousUnderConstruction uc = (BlockInfoContiguousUnderConstruction)lastBlock;
|
BlockUnderConstructionFeature uc = lastBlock.getUnderConstructionFeature();
|
||||||
// determine if last block was intended to be truncated
|
// determine if last block was intended to be truncated
|
||||||
Block recoveryBlock = uc.getTruncateBlock();
|
Block recoveryBlock = uc.getTruncateBlock();
|
||||||
boolean truncateRecovery = recoveryBlock != null;
|
boolean truncateRecovery = recoveryBlock != null;
|
||||||
boolean copyOnTruncate = truncateRecovery &&
|
boolean copyOnTruncate = truncateRecovery &&
|
||||||
recoveryBlock.getBlockId() != uc.getBlockId();
|
recoveryBlock.getBlockId() != lastBlock.getBlockId();
|
||||||
assert !copyOnTruncate ||
|
assert !copyOnTruncate ||
|
||||||
recoveryBlock.getBlockId() < uc.getBlockId() &&
|
recoveryBlock.getBlockId() < lastBlock.getBlockId() &&
|
||||||
recoveryBlock.getGenerationStamp() < uc.getGenerationStamp() &&
|
recoveryBlock.getGenerationStamp() < lastBlock.getGenerationStamp() &&
|
||||||
recoveryBlock.getNumBytes() > uc.getNumBytes() :
|
recoveryBlock.getNumBytes() > lastBlock.getNumBytes() :
|
||||||
"wrong recoveryBlock";
|
"wrong recoveryBlock";
|
||||||
|
|
||||||
// setup the last block locations from the blockManager if not known
|
// setup the last block locations from the blockManager if not known
|
||||||
if (uc.getNumExpectedLocations() == 0) {
|
if (uc.getNumExpectedLocations() == 0) {
|
||||||
uc.setExpectedLocations(blockManager.getStorages(lastBlock));
|
uc.setExpectedLocations(lastBlock.getGenerationStamp(),
|
||||||
|
blockManager.getStorages(lastBlock));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uc.getNumExpectedLocations() == 0 && uc.getNumBytes() == 0) {
|
if (uc.getNumExpectedLocations() == 0 && lastBlock.getNumBytes() == 0) {
|
||||||
// There is no datanode reported to this block.
|
// There is no datanode reported to this block.
|
||||||
// may be client have crashed before writing data to pipeline.
|
// may be client have crashed before writing data to pipeline.
|
||||||
// This blocks doesn't need any recovery.
|
// This blocks doesn't need any recovery.
|
||||||
|
@ -3119,14 +3119,15 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// start recovery of the last block for this file
|
// start recovery of the last block for this file
|
||||||
long blockRecoveryId = nextGenerationStamp(blockIdManager.isLegacyBlock(uc));
|
long blockRecoveryId = nextGenerationStamp(
|
||||||
|
blockIdManager.isLegacyBlock(lastBlock));
|
||||||
lease = reassignLease(lease, src, recoveryLeaseHolder, pendingFile);
|
lease = reassignLease(lease, src, recoveryLeaseHolder, pendingFile);
|
||||||
if(copyOnTruncate) {
|
if(copyOnTruncate) {
|
||||||
uc.setGenerationStamp(blockRecoveryId);
|
lastBlock.setGenerationStamp(blockRecoveryId);
|
||||||
} else if(truncateRecovery) {
|
} else if(truncateRecovery) {
|
||||||
recoveryBlock.setGenerationStamp(blockRecoveryId);
|
recoveryBlock.setGenerationStamp(blockRecoveryId);
|
||||||
}
|
}
|
||||||
uc.initializeBlockRecovery(blockRecoveryId);
|
uc.initializeBlockRecovery(lastBlock, blockRecoveryId);
|
||||||
leaseManager.renewLease(lease);
|
leaseManager.renewLease(lease);
|
||||||
// Cannot close file right now, since the last block requires recovery.
|
// Cannot close file right now, since the last block requires recovery.
|
||||||
// This may potentially cause infinite loop in lease recovery
|
// This may potentially cause infinite loop in lease recovery
|
||||||
|
@ -3205,7 +3206,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isInSnapshot(BlockInfoContiguousUnderConstruction blockUC) {
|
public boolean isInSnapshot(BlockInfo blockUC) {
|
||||||
assert hasReadLock();
|
assert hasReadLock();
|
||||||
final BlockCollection bc = blockUC.getBlockCollection();
|
final BlockCollection bc = blockUC.getBlockCollection();
|
||||||
if (bc == null || !(bc instanceof INodeFile)
|
if (bc == null || !(bc instanceof INodeFile)
|
||||||
|
@ -3252,7 +3253,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
waitForLoadingFSImage();
|
waitForLoadingFSImage();
|
||||||
writeLock();
|
writeLock();
|
||||||
boolean copyTruncate = false;
|
boolean copyTruncate = false;
|
||||||
BlockInfoContiguousUnderConstruction truncatedBlock = null;
|
BlockInfo truncatedBlock = null;
|
||||||
try {
|
try {
|
||||||
checkOperation(OperationCategory.WRITE);
|
checkOperation(OperationCategory.WRITE);
|
||||||
// If a DN tries to commit to the standby, the recovery will
|
// If a DN tries to commit to the standby, the recovery will
|
||||||
|
@ -3309,9 +3310,9 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
truncatedBlock = (BlockInfoContiguousUnderConstruction) iFile
|
truncatedBlock = iFile.getLastBlock();
|
||||||
.getLastBlock();
|
long recoveryId = truncatedBlock.getUnderConstructionFeature()
|
||||||
long recoveryId = truncatedBlock.getBlockRecoveryId();
|
.getBlockRecoveryId();
|
||||||
copyTruncate = truncatedBlock.getBlockId() != storedBlock.getBlockId();
|
copyTruncate = truncatedBlock.getBlockId() != storedBlock.getBlockId();
|
||||||
if(recoveryId != newgenerationstamp) {
|
if(recoveryId != newgenerationstamp) {
|
||||||
throw new IOException("The recovery id " + newgenerationstamp
|
throw new IOException("The recovery id " + newgenerationstamp
|
||||||
|
@ -3374,9 +3375,9 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
trimmedTargets.toArray(new DatanodeID[trimmedTargets.size()]),
|
trimmedTargets.toArray(new DatanodeID[trimmedTargets.size()]),
|
||||||
trimmedStorages.toArray(new String[trimmedStorages.size()]));
|
trimmedStorages.toArray(new String[trimmedStorages.size()]));
|
||||||
if(copyTruncate) {
|
if(copyTruncate) {
|
||||||
iFile.setLastBlock(truncatedBlock, trimmedStorageInfos);
|
iFile.convertLastBlockToUC(truncatedBlock, trimmedStorageInfos);
|
||||||
} else {
|
} else {
|
||||||
iFile.setLastBlock(storedBlock, trimmedStorageInfos);
|
iFile.convertLastBlockToUC(storedBlock, trimmedStorageInfos);
|
||||||
if (closeFile) {
|
if (closeFile) {
|
||||||
blockManager.markBlockReplicasAsCorrupt(storedBlock,
|
blockManager.markBlockReplicasAsCorrupt(storedBlock,
|
||||||
oldGenerationStamp, oldNumBytes, trimmedStorageInfos);
|
oldGenerationStamp, oldNumBytes, trimmedStorageInfos);
|
||||||
|
@ -5351,8 +5352,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
assert hasWriteLock();
|
assert hasWriteLock();
|
||||||
// check the vadility of the block and lease holder name
|
// check the vadility of the block and lease holder name
|
||||||
final INodeFile pendingFile = checkUCBlock(oldBlock, clientName);
|
final INodeFile pendingFile = checkUCBlock(oldBlock, clientName);
|
||||||
final BlockInfoContiguousUnderConstruction blockinfo
|
final BlockInfo blockinfo = pendingFile.getLastBlock();
|
||||||
= (BlockInfoContiguousUnderConstruction)pendingFile.getLastBlock();
|
assert !blockinfo.isComplete();
|
||||||
|
|
||||||
// check new GS & length: this is not expected
|
// check new GS & length: this is not expected
|
||||||
if (newBlock.getGenerationStamp() <= blockinfo.getGenerationStamp() ||
|
if (newBlock.getGenerationStamp() <= blockinfo.getGenerationStamp() ||
|
||||||
|
@ -5371,7 +5372,8 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
|
||||||
// find the DatanodeDescriptor objects
|
// find the DatanodeDescriptor objects
|
||||||
final DatanodeStorageInfo[] storages = blockManager.getDatanodeManager()
|
final DatanodeStorageInfo[] storages = blockManager.getDatanodeManager()
|
||||||
.getDatanodeStorageInfos(newNodes, newStorageIDs);
|
.getDatanodeStorageInfos(newNodes, newStorageIDs);
|
||||||
blockinfo.setExpectedLocations(storages);
|
blockinfo.getUnderConstructionFeature().setExpectedLocations(
|
||||||
|
blockinfo.getGenerationStamp(), storages);
|
||||||
|
|
||||||
String src = pendingFile.getFullPathName();
|
String src = pendingFile.getFullPathName();
|
||||||
FSDirWriteFileOp.persistBlocks(dir, src, pendingFile, logRetryCache);
|
FSDirWriteFileOp.persistBlocks(dir, src, pendingFile, logRetryCache);
|
||||||
|
|
|
@ -21,7 +21,6 @@ import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.hadoop.classification.InterfaceAudience;
|
import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,7 +60,7 @@ public class FileUnderConstructionFeature implements INode.Feature {
|
||||||
BlockInfo lastBlock = f.getLastBlock();
|
BlockInfo lastBlock = f.getLastBlock();
|
||||||
assert (lastBlock != null) : "The last block for path "
|
assert (lastBlock != null) : "The last block for path "
|
||||||
+ f.getFullPathName() + " is null when updating its length";
|
+ f.getFullPathName() + " is null when updating its length";
|
||||||
assert (lastBlock instanceof BlockInfoContiguousUnderConstruction)
|
assert !lastBlock.isComplete()
|
||||||
: "The last block for path " + f.getFullPathName()
|
: "The last block for path " + f.getFullPathName()
|
||||||
+ " is not a BlockInfoUnderConstruction when updating its length";
|
+ " is not a BlockInfoUnderConstruction when updating its length";
|
||||||
lastBlock.setNumBytes(lastBlockLength);
|
lastBlock.setNumBytes(lastBlockLength);
|
||||||
|
@ -76,9 +75,8 @@ public class FileUnderConstructionFeature implements INode.Feature {
|
||||||
final BlocksMapUpdateInfo collectedBlocks) {
|
final BlocksMapUpdateInfo collectedBlocks) {
|
||||||
final BlockInfo[] blocks = f.getBlocks();
|
final BlockInfo[] blocks = f.getBlocks();
|
||||||
if (blocks != null && blocks.length > 0
|
if (blocks != null && blocks.length > 0
|
||||||
&& blocks[blocks.length - 1] instanceof BlockInfoContiguousUnderConstruction) {
|
&& !blocks[blocks.length - 1].isComplete()) {
|
||||||
BlockInfoContiguousUnderConstruction lastUC =
|
BlockInfo lastUC = blocks[blocks.length - 1];
|
||||||
(BlockInfoContiguousUnderConstruction) blocks[blocks.length - 1];
|
|
||||||
if (lastUC.getNumBytes() == 0) {
|
if (lastUC.getNumBytes() == 0) {
|
||||||
// this is a 0-sized block. do not need check its UC state here
|
// this is a 0-sized block. do not need check its UC state here
|
||||||
collectedBlocks.addDeleteBlock(lastUC);
|
collectedBlocks.addDeleteBlock(lastUC);
|
||||||
|
|
|
@ -37,7 +37,6 @@ import org.apache.hadoop.hdfs.protocol.BlockStoragePolicy;
|
||||||
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockCollection;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockStoragePolicySuite;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockStoragePolicySuite;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
|
@ -81,7 +80,7 @@ public class INodeFile extends INodeWithAdditionalFields
|
||||||
* Bit format:
|
* Bit format:
|
||||||
* [4-bit storagePolicyID][12-bit replication][48-bit preferredBlockSize]
|
* [4-bit storagePolicyID][12-bit replication][48-bit preferredBlockSize]
|
||||||
*/
|
*/
|
||||||
static enum HeaderFormat {
|
enum HeaderFormat {
|
||||||
PREFERRED_BLOCK_SIZE(null, 48, 1),
|
PREFERRED_BLOCK_SIZE(null, 48, 1),
|
||||||
REPLICATION(PREFERRED_BLOCK_SIZE.BITS, 12, 1),
|
REPLICATION(PREFERRED_BLOCK_SIZE.BITS, 12, 1),
|
||||||
STORAGE_POLICY_ID(REPLICATION.BITS, BlockStoragePolicySuite.ID_BIT_LENGTH,
|
STORAGE_POLICY_ID(REPLICATION.BITS, BlockStoragePolicySuite.ID_BIT_LENGTH,
|
||||||
|
@ -231,27 +230,28 @@ public class INodeFile extends INodeWithAdditionalFields
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override // BlockCollection, the file should be under construction
|
@Override // BlockCollection, the file should be under construction
|
||||||
public BlockInfoContiguousUnderConstruction setLastBlock(
|
public void convertLastBlockToUC(BlockInfo lastBlock,
|
||||||
BlockInfo lastBlock, DatanodeStorageInfo[] locations)
|
DatanodeStorageInfo[] locations) throws IOException {
|
||||||
throws IOException {
|
|
||||||
Preconditions.checkState(isUnderConstruction(),
|
Preconditions.checkState(isUnderConstruction(),
|
||||||
"file is no longer under construction");
|
"file is no longer under construction");
|
||||||
|
|
||||||
if (numBlocks() == 0) {
|
if (numBlocks() == 0) {
|
||||||
throw new IOException("Failed to set last block: File is empty.");
|
throw new IOException("Failed to set last block: File is empty.");
|
||||||
}
|
}
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
lastBlock.convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION,
|
||||||
lastBlock.convertToBlockUnderConstruction(
|
locations);
|
||||||
BlockUCState.UNDER_CONSTRUCTION, locations);
|
}
|
||||||
setBlock(numBlocks() - 1, ucBlock);
|
|
||||||
return ucBlock;
|
void setLastBlock(BlockInfo blk) {
|
||||||
|
blk.setBlockCollection(this);
|
||||||
|
setBlock(numBlocks() - 1, blk);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove a block from the block list. This block should be
|
* Remove a block from the block list. This block should be
|
||||||
* the last one on the list.
|
* the last one on the list.
|
||||||
*/
|
*/
|
||||||
BlockInfoContiguousUnderConstruction removeLastBlock(Block oldblock) {
|
BlockInfo removeLastBlock(Block oldblock) {
|
||||||
Preconditions.checkState(isUnderConstruction(),
|
Preconditions.checkState(isUnderConstruction(),
|
||||||
"file is no longer under construction");
|
"file is no longer under construction");
|
||||||
if (blocks == null || blocks.length == 0) {
|
if (blocks == null || blocks.length == 0) {
|
||||||
|
@ -262,13 +262,12 @@ public class INodeFile extends INodeWithAdditionalFields
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockInfoContiguousUnderConstruction uc =
|
BlockInfo ucBlock = blocks[size_1];
|
||||||
(BlockInfoContiguousUnderConstruction)blocks[size_1];
|
|
||||||
//copy to a new list
|
//copy to a new list
|
||||||
BlockInfo[] newlist = new BlockInfo[size_1];
|
BlockInfo[] newlist = new BlockInfo[size_1];
|
||||||
System.arraycopy(blocks, 0, newlist, 0, size_1);
|
System.arraycopy(blocks, 0, newlist, 0, size_1);
|
||||||
setBlocks(newlist);
|
setBlocks(newlist);
|
||||||
return uc;
|
return ucBlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* End of Under-Construction Feature */
|
/* End of Under-Construction Feature */
|
||||||
|
@ -696,7 +695,7 @@ public class INodeFile extends INodeWithAdditionalFields
|
||||||
final int last = blocks.length - 1;
|
final int last = blocks.length - 1;
|
||||||
//check if the last block is BlockInfoUnderConstruction
|
//check if the last block is BlockInfoUnderConstruction
|
||||||
long size = blocks[last].getNumBytes();
|
long size = blocks[last].getNumBytes();
|
||||||
if (blocks[last] instanceof BlockInfoContiguousUnderConstruction) {
|
if (!blocks[last].isComplete()) {
|
||||||
if (!includesLastUcBlock) {
|
if (!includesLastUcBlock) {
|
||||||
size = 0;
|
size = 0;
|
||||||
} else if (usePreferredBlockSize4LastUcBlock) {
|
} else if (usePreferredBlockSize4LastUcBlock) {
|
||||||
|
|
|
@ -19,7 +19,7 @@ package org.apache.hadoop.hdfs.server.namenode;
|
||||||
|
|
||||||
import org.apache.hadoop.classification.InterfaceAudience;
|
import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory;
|
import org.apache.hadoop.hdfs.server.namenode.NameNode.OperationCategory;
|
||||||
import org.apache.hadoop.hdfs.util.RwLock;
|
import org.apache.hadoop.hdfs.util.RwLock;
|
||||||
import org.apache.hadoop.ipc.StandbyException;
|
import org.apache.hadoop.ipc.StandbyException;
|
||||||
|
@ -45,7 +45,7 @@ public interface Namesystem extends RwLock, SafeMode {
|
||||||
|
|
||||||
void checkOperation(OperationCategory read) throws StandbyException;
|
void checkOperation(OperationCategory read) throws StandbyException;
|
||||||
|
|
||||||
boolean isInSnapshot(BlockInfoContiguousUnderConstruction blockUC);
|
boolean isInSnapshot(BlockInfo blockUC);
|
||||||
|
|
||||||
CacheManager getCacheManager();
|
CacheManager getCacheManager();
|
||||||
}
|
}
|
|
@ -22,7 +22,6 @@ import java.util.List;
|
||||||
|
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.INode;
|
import org.apache.hadoop.hdfs.server.namenode.INode;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
import org.apache.hadoop.hdfs.server.namenode.INode.BlocksMapUpdateInfo;
|
||||||
|
@ -133,7 +132,7 @@ public class FileDiffList extends
|
||||||
Block dontRemoveBlock = null;
|
Block dontRemoveBlock = null;
|
||||||
if (lastBlock != null && lastBlock.getBlockUCState().equals(
|
if (lastBlock != null && lastBlock.getBlockUCState().equals(
|
||||||
HdfsServerConstants.BlockUCState.UNDER_RECOVERY)) {
|
HdfsServerConstants.BlockUCState.UNDER_RECOVERY)) {
|
||||||
dontRemoveBlock = ((BlockInfoContiguousUnderConstruction) lastBlock)
|
dontRemoveBlock = lastBlock.getUnderConstructionFeature()
|
||||||
.getTruncateBlock();
|
.getTruncateBlock();
|
||||||
}
|
}
|
||||||
// Collect the remaining blocks of the file, ignoring truncate block
|
// Collect the remaining blocks of the file, ignoring truncate block
|
||||||
|
|
|
@ -110,7 +110,6 @@ import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.BlockOpResponseP
|
||||||
import org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier;
|
import org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier;
|
||||||
import org.apache.hadoop.hdfs.security.token.block.ExportedBlockKeys;
|
import org.apache.hadoop.hdfs.security.token.block.ExportedBlockKeys;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManagerTestUtil;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManagerTestUtil;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor;
|
||||||
|
@ -1636,13 +1635,11 @@ public class DFSTestUtil {
|
||||||
BlockManager bm0 = nn.getNamesystem().getBlockManager();
|
BlockManager bm0 = nn.getNamesystem().getBlockManager();
|
||||||
BlockInfo storedBlock = bm0.getStoredBlock(blk.getLocalBlock());
|
BlockInfo storedBlock = bm0.getStoredBlock(blk.getLocalBlock());
|
||||||
assertTrue("Block " + blk + " should be under construction, " +
|
assertTrue("Block " + blk + " should be under construction, " +
|
||||||
"got: " + storedBlock,
|
"got: " + storedBlock, !storedBlock.isComplete());
|
||||||
storedBlock instanceof BlockInfoContiguousUnderConstruction);
|
|
||||||
BlockInfoContiguousUnderConstruction ucBlock =
|
|
||||||
(BlockInfoContiguousUnderConstruction)storedBlock;
|
|
||||||
// We expect that the replica with the most recent heart beat will be
|
// We expect that the replica with the most recent heart beat will be
|
||||||
// the one to be in charge of the synchronization / recovery protocol.
|
// the one to be in charge of the synchronization / recovery protocol.
|
||||||
final DatanodeStorageInfo[] storages = ucBlock.getExpectedStorageLocations();
|
final DatanodeStorageInfo[] storages = storedBlock
|
||||||
|
.getUnderConstructionFeature().getExpectedStorageLocations();
|
||||||
DatanodeStorageInfo expectedPrimary = storages[0];
|
DatanodeStorageInfo expectedPrimary = storages[0];
|
||||||
long mostRecentLastUpdate = expectedPrimary.getDatanodeDescriptor()
|
long mostRecentLastUpdate = expectedPrimary.getDatanodeDescriptor()
|
||||||
.getLastUpdateMonotonic();
|
.getLastUpdateMonotonic();
|
||||||
|
|
|
@ -23,7 +23,6 @@ import org.apache.hadoop.hdfs.DFSTestUtil;
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.server.common.GenerationStamp;
|
import org.apache.hadoop.hdfs.server.common.GenerationStamp;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
import org.apache.hadoop.util.Time;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -40,25 +39,24 @@ public class TestBlockInfoUnderConstruction {
|
||||||
DatanodeDescriptor dd3 = s3.getDatanodeDescriptor();
|
DatanodeDescriptor dd3 = s3.getDatanodeDescriptor();
|
||||||
|
|
||||||
dd1.isAlive = dd2.isAlive = dd3.isAlive = true;
|
dd1.isAlive = dd2.isAlive = dd3.isAlive = true;
|
||||||
BlockInfoContiguousUnderConstruction blockInfo = new BlockInfoContiguousUnderConstruction(
|
BlockInfoContiguous blockInfo = new BlockInfoContiguous(
|
||||||
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP),
|
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3);
|
||||||
(short) 3,
|
blockInfo.convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION,
|
||||||
BlockUCState.UNDER_CONSTRUCTION,
|
|
||||||
new DatanodeStorageInfo[] {s1, s2, s3});
|
new DatanodeStorageInfo[] {s1, s2, s3});
|
||||||
|
|
||||||
// Recovery attempt #1.
|
// Recovery attempt #1.
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -3 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -3 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -2 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -2 * 1000);
|
||||||
blockInfo.initializeBlockRecovery(1);
|
blockInfo.getUnderConstructionFeature().initializeBlockRecovery(blockInfo, 1);
|
||||||
BlockInfoContiguousUnderConstruction[] blockInfoRecovery = dd2.getLeaseRecoveryCommand(1);
|
BlockInfo[] blockInfoRecovery = dd2.getLeaseRecoveryCommand(1);
|
||||||
assertEquals(blockInfoRecovery[0], blockInfo);
|
assertEquals(blockInfoRecovery[0], blockInfo);
|
||||||
|
|
||||||
// Recovery attempt #2.
|
// Recovery attempt #2.
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -3 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -3 * 1000);
|
||||||
blockInfo.initializeBlockRecovery(2);
|
blockInfo.getUnderConstructionFeature().initializeBlockRecovery(blockInfo, 2);
|
||||||
blockInfoRecovery = dd1.getLeaseRecoveryCommand(1);
|
blockInfoRecovery = dd1.getLeaseRecoveryCommand(1);
|
||||||
assertEquals(blockInfoRecovery[0], blockInfo);
|
assertEquals(blockInfoRecovery[0], blockInfo);
|
||||||
|
|
||||||
|
@ -66,7 +64,7 @@ public class TestBlockInfoUnderConstruction {
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -3 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, -3 * 1000);
|
||||||
blockInfo.initializeBlockRecovery(3);
|
blockInfo.getUnderConstructionFeature().initializeBlockRecovery(blockInfo, 3);
|
||||||
blockInfoRecovery = dd3.getLeaseRecoveryCommand(1);
|
blockInfoRecovery = dd3.getLeaseRecoveryCommand(1);
|
||||||
assertEquals(blockInfoRecovery[0], blockInfo);
|
assertEquals(blockInfoRecovery[0], blockInfo);
|
||||||
|
|
||||||
|
@ -75,7 +73,7 @@ public class TestBlockInfoUnderConstruction {
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd1, -2 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -1 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, 0);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, 0);
|
||||||
blockInfo.initializeBlockRecovery(3);
|
blockInfo.getUnderConstructionFeature().initializeBlockRecovery(blockInfo, 3);
|
||||||
blockInfoRecovery = dd3.getLeaseRecoveryCommand(1);
|
blockInfoRecovery = dd3.getLeaseRecoveryCommand(1);
|
||||||
assertEquals(blockInfoRecovery[0], blockInfo);
|
assertEquals(blockInfoRecovery[0], blockInfo);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hdfs.server.blockmanagement;
|
package org.apache.hadoop.hdfs.server.blockmanagement;
|
||||||
|
|
||||||
|
import static org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
@ -726,8 +727,8 @@ public class TestBlockManager {
|
||||||
// verify the storage info is correct
|
// verify the storage info is correct
|
||||||
assertTrue(bm.getStoredBlock(new Block(receivedBlockId)).findStorageInfo
|
assertTrue(bm.getStoredBlock(new Block(receivedBlockId)).findStorageInfo
|
||||||
(ds) >= 0);
|
(ds) >= 0);
|
||||||
assertTrue(((BlockInfoContiguousUnderConstruction) bm.
|
assertTrue(bm.getStoredBlock(new Block(receivingBlockId))
|
||||||
getStoredBlock(new Block(receivingBlockId))).getNumExpectedLocations() > 0);
|
.getUnderConstructionFeature().getNumExpectedLocations() > 0);
|
||||||
assertTrue(bm.getStoredBlock(new Block(receivingReceivedBlockId))
|
assertTrue(bm.getStoredBlock(new Block(receivingReceivedBlockId))
|
||||||
.findStorageInfo(ds) >= 0);
|
.findStorageInfo(ds) >= 0);
|
||||||
assertNull(bm.getStoredBlock(new Block(ReceivedDeletedBlockId)));
|
assertNull(bm.getStoredBlock(new Block(ReceivedDeletedBlockId)));
|
||||||
|
@ -747,8 +748,8 @@ public class TestBlockManager {
|
||||||
|
|
||||||
private BlockInfo addUcBlockToBM(long blkId) {
|
private BlockInfo addUcBlockToBM(long blkId) {
|
||||||
Block block = new Block(blkId);
|
Block block = new Block(blkId);
|
||||||
BlockInfoContiguousUnderConstruction blockInfo =
|
BlockInfo blockInfo = new BlockInfoContiguous(block, (short) 3);
|
||||||
new BlockInfoContiguousUnderConstruction(block, (short) 3);
|
blockInfo.convertToBlockUnderConstruction(UNDER_CONSTRUCTION, null);
|
||||||
BlockCollection bc = Mockito.mock(BlockCollection.class);
|
BlockCollection bc = Mockito.mock(BlockCollection.class);
|
||||||
Mockito.doReturn((short) 3).when(bc).getPreferredBlockReplication();
|
Mockito.doReturn((short) 3).when(bc).getPreferredBlockReplication();
|
||||||
bm.blocksMap.addBlockCollection(blockInfo, bc);
|
bm.blocksMap.addBlockCollection(blockInfo, bc);
|
||||||
|
|
|
@ -39,7 +39,6 @@ import org.apache.hadoop.hdfs.server.protocol.DatanodeCommand;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.DatanodeProtocol;
|
import org.apache.hadoop.hdfs.server.protocol.DatanodeProtocol;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.DatanodeRegistration;
|
import org.apache.hadoop.hdfs.server.protocol.DatanodeRegistration;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.DatanodeStorage;
|
import org.apache.hadoop.hdfs.server.protocol.DatanodeStorage;
|
||||||
import org.apache.hadoop.util.Time;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -173,9 +172,10 @@ public class TestHeartbeatHandling {
|
||||||
dd1.getStorageInfos()[0],
|
dd1.getStorageInfos()[0],
|
||||||
dd2.getStorageInfos()[0],
|
dd2.getStorageInfos()[0],
|
||||||
dd3.getStorageInfos()[0]};
|
dd3.getStorageInfos()[0]};
|
||||||
BlockInfoContiguousUnderConstruction blockInfo = new BlockInfoContiguousUnderConstruction(
|
BlockInfo blockInfo = new BlockInfoContiguous(
|
||||||
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3,
|
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3);
|
||||||
BlockUCState.UNDER_RECOVERY, storages);
|
blockInfo.convertToBlockUnderConstruction(BlockUCState.UNDER_RECOVERY,
|
||||||
|
storages);
|
||||||
dd1.addBlockToBeRecovered(blockInfo);
|
dd1.addBlockToBeRecovered(blockInfo);
|
||||||
DatanodeCommand[] cmds =
|
DatanodeCommand[] cmds =
|
||||||
NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
||||||
|
@ -195,9 +195,10 @@ public class TestHeartbeatHandling {
|
||||||
// More than the default stale interval of 30 seconds.
|
// More than the default stale interval of 30 seconds.
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -40 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, -40 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, 0);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, 0);
|
||||||
blockInfo = new BlockInfoContiguousUnderConstruction(
|
blockInfo = new BlockInfoContiguous(
|
||||||
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3,
|
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3);
|
||||||
BlockUCState.UNDER_RECOVERY, storages);
|
blockInfo.convertToBlockUnderConstruction(BlockUCState.UNDER_RECOVERY,
|
||||||
|
storages);
|
||||||
dd1.addBlockToBeRecovered(blockInfo);
|
dd1.addBlockToBeRecovered(blockInfo);
|
||||||
cmds = NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
cmds = NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
||||||
assertEquals(1, cmds.length);
|
assertEquals(1, cmds.length);
|
||||||
|
@ -216,9 +217,10 @@ public class TestHeartbeatHandling {
|
||||||
// More than the default stale interval of 30 seconds.
|
// More than the default stale interval of 30 seconds.
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd2, - 40 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd2, - 40 * 1000);
|
||||||
DFSTestUtil.resetLastUpdatesWithOffset(dd3, - 80 * 1000);
|
DFSTestUtil.resetLastUpdatesWithOffset(dd3, - 80 * 1000);
|
||||||
blockInfo = new BlockInfoContiguousUnderConstruction(
|
blockInfo = new BlockInfoContiguous(
|
||||||
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3,
|
new Block(0, 0, GenerationStamp.LAST_RESERVED_STAMP), (short) 3);
|
||||||
BlockUCState.UNDER_RECOVERY, storages);
|
blockInfo.convertToBlockUnderConstruction(BlockUCState.UNDER_RECOVERY,
|
||||||
|
storages);
|
||||||
dd1.addBlockToBeRecovered(blockInfo);
|
dd1.addBlockToBeRecovered(blockInfo);
|
||||||
cmds = NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
cmds = NameNodeAdapter.sendHeartBeat(nodeReg1, dd1, namesystem).getCommands();
|
||||||
assertEquals(1, cmds.length);
|
assertEquals(1, cmds.length);
|
||||||
|
|
|
@ -1182,7 +1182,8 @@ public class TestReplicationPolicy {
|
||||||
// block under construction, the BlockManager will realize the expected
|
// block under construction, the BlockManager will realize the expected
|
||||||
// replication has been achieved and remove it from the under-replicated
|
// replication has been achieved and remove it from the under-replicated
|
||||||
// queue.
|
// queue.
|
||||||
BlockInfoContiguousUnderConstruction info = new BlockInfoContiguousUnderConstruction(block1, (short) 1);
|
BlockInfoContiguous info = new BlockInfoContiguous(block1, (short) 1);
|
||||||
|
info.convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION, null);
|
||||||
BlockCollection bc = mock(BlockCollection.class);
|
BlockCollection bc = mock(BlockCollection.class);
|
||||||
when(bc.getPreferredBlockReplication()).thenReturn((short)1);
|
when(bc.getPreferredBlockReplication()).thenReturn((short)1);
|
||||||
bm.addBlockCollection(info, bc);
|
bm.addBlockCollection(info, bc);
|
||||||
|
@ -1238,7 +1239,6 @@ public class TestReplicationPolicy {
|
||||||
|
|
||||||
DatanodeStorageInfo[] storageAry = {new DatanodeStorageInfo(
|
DatanodeStorageInfo[] storageAry = {new DatanodeStorageInfo(
|
||||||
dataNodes[0], new DatanodeStorage("s1"))};
|
dataNodes[0], new DatanodeStorage("s1"))};
|
||||||
final BlockInfoContiguousUnderConstruction ucBlock =
|
|
||||||
info.convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION,
|
info.convertToBlockUnderConstruction(BlockUCState.UNDER_CONSTRUCTION,
|
||||||
storageAry);
|
storageAry);
|
||||||
DatanodeStorageInfo storage = mock(DatanodeStorageInfo.class);
|
DatanodeStorageInfo storage = mock(DatanodeStorageInfo.class);
|
||||||
|
@ -1249,10 +1249,9 @@ public class TestReplicationPolicy {
|
||||||
when(storage.removeBlock(any(BlockInfo.class))).thenReturn(true);
|
when(storage.removeBlock(any(BlockInfo.class))).thenReturn(true);
|
||||||
when(storage.addBlock(any(BlockInfo.class))).thenReturn
|
when(storage.addBlock(any(BlockInfo.class))).thenReturn
|
||||||
(DatanodeStorageInfo.AddBlockResult.ADDED);
|
(DatanodeStorageInfo.AddBlockResult.ADDED);
|
||||||
ucBlock.addStorage(storage);
|
info.addStorage(storage);
|
||||||
|
|
||||||
when(mbc.setLastBlock((BlockInfo) any(), (DatanodeStorageInfo[]) any()))
|
when(mbc.getLastBlock()).thenReturn(info);
|
||||||
.thenReturn(ucBlock);
|
|
||||||
|
|
||||||
bm.convertLastBlockToUnderConstruction(mbc, 0L);
|
bm.convertLastBlockToUnderConstruction(mbc, 0L);
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
package org.apache.hadoop.hdfs.server.namenode;
|
package org.apache.hadoop.hdfs.server.namenode;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -36,7 +37,7 @@ import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.BlockUCState;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocols;
|
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocols;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
|
@ -156,6 +157,7 @@ public class TestBlockUnderConstruction {
|
||||||
@Test
|
@Test
|
||||||
public void testGetBlockLocations() throws IOException {
|
public void testGetBlockLocations() throws IOException {
|
||||||
final NamenodeProtocols namenode = cluster.getNameNodeRpc();
|
final NamenodeProtocols namenode = cluster.getNameNodeRpc();
|
||||||
|
final BlockManager blockManager = cluster.getNamesystem().getBlockManager();
|
||||||
final Path p = new Path(BASE_DIR, "file2.dat");
|
final Path p = new Path(BASE_DIR, "file2.dat");
|
||||||
final String src = p.toString();
|
final String src = p.toString();
|
||||||
final FSDataOutputStream out = TestFileCreation.createFile(hdfs, p, 3);
|
final FSDataOutputStream out = TestFileCreation.createFile(hdfs, p, 3);
|
||||||
|
@ -170,7 +172,7 @@ public class TestBlockUnderConstruction {
|
||||||
final List<LocatedBlock> blocks = lb.getLocatedBlocks();
|
final List<LocatedBlock> blocks = lb.getLocatedBlocks();
|
||||||
assertEquals(i, blocks.size());
|
assertEquals(i, blocks.size());
|
||||||
final Block b = blocks.get(blocks.size() - 1).getBlock().getLocalBlock();
|
final Block b = blocks.get(blocks.size() - 1).getBlock().getLocalBlock();
|
||||||
assertTrue(b instanceof BlockInfoContiguousUnderConstruction);
|
assertFalse(blockManager.getStoredBlock(b).isComplete());
|
||||||
|
|
||||||
if (++i < NUM_BLOCKS) {
|
if (++i < NUM_BLOCKS) {
|
||||||
// write one more block
|
// write one more block
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.hadoop.hdfs.protocol.DatanodeID;
|
||||||
import org.apache.hadoop.hdfs.protocol.ExtendedBlock;
|
import org.apache.hadoop.hdfs.protocol.ExtendedBlock;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeStorageInfo;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
@ -68,11 +67,13 @@ public class TestCommitBlockSynchronization {
|
||||||
namesystem.dir.getINodeMap().put(file);
|
namesystem.dir.getINodeMap().put(file);
|
||||||
|
|
||||||
FSNamesystem namesystemSpy = spy(namesystem);
|
FSNamesystem namesystemSpy = spy(namesystem);
|
||||||
BlockInfoContiguousUnderConstruction blockInfo = new BlockInfoContiguousUnderConstruction(
|
BlockInfo blockInfo = new BlockInfoContiguous(block, (short) 1);
|
||||||
block, (short) 1, HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, targets);
|
blockInfo.convertToBlockUnderConstruction(
|
||||||
|
HdfsServerConstants.BlockUCState.UNDER_CONSTRUCTION, targets);
|
||||||
blockInfo.setBlockCollection(file);
|
blockInfo.setBlockCollection(file);
|
||||||
blockInfo.setGenerationStamp(genStamp);
|
blockInfo.setGenerationStamp(genStamp);
|
||||||
blockInfo.initializeBlockRecovery(genStamp);
|
blockInfo.getUnderConstructionFeature().initializeBlockRecovery(blockInfo,
|
||||||
|
genStamp);
|
||||||
doReturn(blockInfo).when(file).removeLastBlock(any(Block.class));
|
doReturn(blockInfo).when(file).removeLastBlock(any(Block.class));
|
||||||
doReturn(true).when(file).isUnderConstruction();
|
doReturn(true).when(file).isUnderConstruction();
|
||||||
doReturn(new BlockInfoContiguous[1]).when(file).getBlocks();
|
doReturn(new BlockInfoContiguous[1]).when(file).getBlocks();
|
||||||
|
|
|
@ -54,7 +54,6 @@ import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
||||||
import org.apache.hadoop.security.UserGroupInformation;
|
import org.apache.hadoop.security.UserGroupInformation;
|
||||||
|
@ -1016,7 +1015,7 @@ public class TestFileTruncate {
|
||||||
is(fsn.getBlockIdManager().getGenerationStampV2()));
|
is(fsn.getBlockIdManager().getGenerationStampV2()));
|
||||||
assertThat(file.getLastBlock().getBlockUCState(),
|
assertThat(file.getLastBlock().getBlockUCState(),
|
||||||
is(HdfsServerConstants.BlockUCState.UNDER_RECOVERY));
|
is(HdfsServerConstants.BlockUCState.UNDER_RECOVERY));
|
||||||
long blockRecoveryId = ((BlockInfoContiguousUnderConstruction) file.getLastBlock())
|
long blockRecoveryId = file.getLastBlock().getUnderConstructionFeature()
|
||||||
.getBlockRecoveryId();
|
.getBlockRecoveryId();
|
||||||
assertThat(blockRecoveryId, is(initialGenStamp + 1));
|
assertThat(blockRecoveryId, is(initialGenStamp + 1));
|
||||||
fsn.getEditLog().logTruncate(
|
fsn.getEditLog().logTruncate(
|
||||||
|
@ -1049,7 +1048,7 @@ public class TestFileTruncate {
|
||||||
is(fsn.getBlockIdManager().getGenerationStampV2()));
|
is(fsn.getBlockIdManager().getGenerationStampV2()));
|
||||||
assertThat(file.getLastBlock().getBlockUCState(),
|
assertThat(file.getLastBlock().getBlockUCState(),
|
||||||
is(HdfsServerConstants.BlockUCState.UNDER_RECOVERY));
|
is(HdfsServerConstants.BlockUCState.UNDER_RECOVERY));
|
||||||
long blockRecoveryId = ((BlockInfoContiguousUnderConstruction) file.getLastBlock())
|
long blockRecoveryId = file.getLastBlock().getUnderConstructionFeature()
|
||||||
.getBlockRecoveryId();
|
.getBlockRecoveryId();
|
||||||
assertThat(blockRecoveryId, is(initialGenStamp + 1));
|
assertThat(blockRecoveryId, is(initialGenStamp + 1));
|
||||||
fsn.getEditLog().logTruncate(
|
fsn.getEditLog().logTruncate(
|
||||||
|
|
|
@ -72,7 +72,7 @@ import org.apache.hadoop.hdfs.protocol.HdfsFileStatus;
|
||||||
import org.apache.hadoop.hdfs.protocol.LastBlockWithStatus;
|
import org.apache.hadoop.hdfs.protocol.LastBlockWithStatus;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlocks;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
|
import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.INodeFile;
|
import org.apache.hadoop.hdfs.server.namenode.INodeFile;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotTestHelper;
|
import org.apache.hadoop.hdfs.server.namenode.snapshot.SnapshotTestHelper;
|
||||||
|
@ -752,12 +752,13 @@ public class TestRetryCacheWithHA {
|
||||||
boolean checkNamenodeBeforeReturn() throws Exception {
|
boolean checkNamenodeBeforeReturn() throws Exception {
|
||||||
INodeFile fileNode = cluster.getNamesystem(0).getFSDirectory()
|
INodeFile fileNode = cluster.getNamesystem(0).getFSDirectory()
|
||||||
.getINode4Write(file).asFile();
|
.getINode4Write(file).asFile();
|
||||||
BlockInfoContiguousUnderConstruction blkUC =
|
BlockInfo blkUC = (fileNode.getBlocks())[1];
|
||||||
(BlockInfoContiguousUnderConstruction) (fileNode.getBlocks())[1];
|
int datanodeNum = blkUC.getUnderConstructionFeature()
|
||||||
int datanodeNum = blkUC.getExpectedStorageLocations().length;
|
.getExpectedStorageLocations().length;
|
||||||
for (int i = 0; i < CHECKTIMES && datanodeNum != 2; i++) {
|
for (int i = 0; i < CHECKTIMES && datanodeNum != 2; i++) {
|
||||||
Thread.sleep(1000);
|
Thread.sleep(1000);
|
||||||
datanodeNum = blkUC.getExpectedStorageLocations().length;
|
datanodeNum = blkUC.getUnderConstructionFeature()
|
||||||
|
.getExpectedStorageLocations().length;
|
||||||
}
|
}
|
||||||
return datanodeNum == 2;
|
return datanodeNum == 2;
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,8 +44,8 @@ import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguousUnderConstruction;
|
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockManager;
|
||||||
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockUnderConstructionFeature;
|
||||||
import org.apache.hadoop.hdfs.server.datanode.BlockPoolSliceStorage;
|
import org.apache.hadoop.hdfs.server.datanode.BlockPoolSliceStorage;
|
||||||
import org.apache.hadoop.hdfs.server.datanode.BlockScanner;
|
import org.apache.hadoop.hdfs.server.datanode.BlockScanner;
|
||||||
import org.apache.hadoop.hdfs.server.datanode.DataNode;
|
import org.apache.hadoop.hdfs.server.datanode.DataNode;
|
||||||
|
@ -177,8 +177,7 @@ public class SnapshotTestHelper {
|
||||||
* Specific information for different types of INode:
|
* Specific information for different types of INode:
|
||||||
* {@link INodeDirectory}:childrenSize
|
* {@link INodeDirectory}:childrenSize
|
||||||
* {@link INodeFile}: fileSize, block list. Check {@link BlockInfo#toString()}
|
* {@link INodeFile}: fileSize, block list. Check {@link BlockInfo#toString()}
|
||||||
* and {@link BlockInfoContiguousUnderConstruction#toString()} for detailed information.
|
* and {@link BlockUnderConstructionFeature#toString()} for detailed information.
|
||||||
* {@link FileWithSnapshot}: next link
|
|
||||||
* </pre>
|
* </pre>
|
||||||
* @see INode#dumpTreeRecursively()
|
* @see INode#dumpTreeRecursively()
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue