HDFS-7399. Lack of synchronization in DFSOutputStream#Packet#getLastByteOffsetBlock() (Contributed by Vinayakumar B)
This commit is contained in:
parent
26d3b7e6ae
commit
6783d17fcf
|
@ -433,6 +433,9 @@ Release 2.7.0 - UNRELEASED
|
|||
HDFS-7395. BlockIdManager#clear() bails out when resetting the
|
||||
GenerationStampV1Limit. (wheat9)
|
||||
|
||||
HDFS-7399. Lack of synchronization in
|
||||
DFSOutputStream#Packet#getLastByteOffsetBlock() (vinayakumarb)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -344,7 +344,7 @@ public class DFSOutputStream extends FSOutputSummer
|
|||
}
|
||||
|
||||
// get the packet's last byte's offset in the block
|
||||
long getLastByteOffsetBlock() {
|
||||
synchronized long getLastByteOffsetBlock() {
|
||||
return offsetInBlock + dataPos - dataStart;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue