HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via Colin P. McCabe)
(cherry picked from commit ec183faadc
)
Conflicts:
hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
This commit is contained in:
parent
a9c1bb4241
commit
a4492dc6ac
|
@ -32,6 +32,9 @@ Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
|
HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via
|
||||||
|
Colin P. McCabe)
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
HDFS-9289. Make DataStreamer#block thread safe and verify genStamp in
|
HDFS-9289. Make DataStreamer#block thread safe and verify genStamp in
|
||||||
|
|
|
@ -301,7 +301,7 @@ class BlockPoolSlice {
|
||||||
}
|
}
|
||||||
|
|
||||||
void checkDirs() throws DiskErrorException {
|
void checkDirs() throws DiskErrorException {
|
||||||
DiskChecker.checkDirs(finalizedDir);
|
DiskChecker.checkDir(finalizedDir);
|
||||||
DiskChecker.checkDir(tmpDir);
|
DiskChecker.checkDir(tmpDir);
|
||||||
DiskChecker.checkDir(rbwDir);
|
DiskChecker.checkDir(rbwDir);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue