HDFS-8806. Inconsistent metrics: number of missing blocks with replication factor 1 not properly cleared. Contributed by Zhe Zhang.
This commit is contained in:
parent
e202efaf93
commit
206d4933a5
@ -1097,6 +1097,9 @@ Release 2.7.2 - UNRELEASED
|
|||||||
HDFS-6945. BlockManager should remove a block from excessReplicateMap and
|
HDFS-6945. BlockManager should remove a block from excessReplicateMap and
|
||||||
decrement ExcessBlocks metric when the block is removed. (aajisaka)
|
decrement ExcessBlocks metric when the block is removed. (aajisaka)
|
||||||
|
|
||||||
|
HDFS-8806. Inconsistent metrics: number of missing blocks with replication
|
||||||
|
factor 1 not properly cleared. (Zhe Zhang via aajisaka)
|
||||||
|
|
||||||
Release 2.7.1 - 2015-07-06
|
Release 2.7.1 - 2015-07-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -101,10 +101,11 @@ class UnderReplicatedBlocks implements Iterable<BlockInfo> {
|
|||||||
/**
|
/**
|
||||||
* Empty the queues and timestamps.
|
* Empty the queues and timestamps.
|
||||||
*/
|
*/
|
||||||
void clear() {
|
synchronized void clear() {
|
||||||
for (int i = 0; i < LEVEL; i++) {
|
for (int i = 0; i < LEVEL; i++) {
|
||||||
priorityQueues.get(i).clear();
|
priorityQueues.get(i).clear();
|
||||||
}
|
}
|
||||||
|
corruptReplOneBlocks = 0;
|
||||||
timestampsMap.clear();
|
timestampsMap.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user