HDFS-8665. Fix replication check in DFSTestUtils#waitForReplication.
This commit is contained in:
parent
aa5b15b03b
commit
ff0e5e572f
@ -672,6 +672,8 @@ Release 2.8.0 - UNRELEASED
|
||||
HDFS-8640. Make reserved RBW space visible through JMX. (kanaka kumar
|
||||
avvaru via Arpit Agarwal)
|
||||
|
||||
HDFS-8665. Fix replication check in DFSTestUtils#waitForReplication. (wang)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
||||
|
@ -535,7 +535,14 @@ public static void waitForReplication(final DistributedFileSystem dfs,
|
||||
public Boolean get() {
|
||||
try {
|
||||
FileStatus stat = dfs.getFileStatus(file);
|
||||
return replication == stat.getReplication();
|
||||
BlockLocation[] locs = dfs.getFileBlockLocations(stat, 0, stat
|
||||
.getLen());
|
||||
for (BlockLocation loc : locs) {
|
||||
if (replication != loc.getHosts().length) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
} catch (IOException e) {
|
||||
LOG.info("getFileStatus on path " + file + " failed!", e);
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user