HDFS-7884. Fix NullPointerException in BlockSender when the generation stamp provided by the client is larger than the one stored in the datanode. Contributed by Brahma Reddy Battula
This commit is contained in:
parent
cbdcdfad6d
commit
fe693b72de
|
@ -937,6 +937,10 @@ Release 2.7.0 - UNRELEASED
|
|||
HDFS-7881. TestHftpFileSystem#testSeek fails in branch-2.
|
||||
(Brahma Reddy Battula via aajisaka)
|
||||
|
||||
HDFS-7884. Fix NullPointerException in BlockSender when the generation stamp
|
||||
provided by the client is larger than the one stored in the datanode.
|
||||
(Brahma Reddy Battula via szetszwo)
|
||||
|
||||
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
||||
|
|
|
@ -246,6 +246,13 @@ class BlockSender implements java.io.Closeable {
|
|||
if (replica.getGenerationStamp() < block.getGenerationStamp()) {
|
||||
throw new IOException("Replica gen stamp < block genstamp, block="
|
||||
+ block + ", replica=" + replica);
|
||||
} else if (replica.getGenerationStamp() > block.getGenerationStamp()) {
|
||||
if (DataNode.LOG.isDebugEnabled()) {
|
||||
DataNode.LOG.debug("Bumping up the client provided"
|
||||
+ " block's genstamp to latest " + replica.getGenerationStamp()
|
||||
+ " for block " + block);
|
||||
}
|
||||
block.setGenerationStamp(replica.getGenerationStamp());
|
||||
}
|
||||
if (replicaVisibleLength < 0) {
|
||||
throw new IOException("Replica is not readable, block="
|
||||
|
|
Loading…
Reference in New Issue