HDFS-9565. TestDistributedFileSystem.testLocatedFileStatusStorageIdsTypes is flaky due to race condition. (Contributed by Wei-Chiu Chuang)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/72a3f649 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/72a3f649 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/72a3f649 Branch: refs/heads/yarn-2877 Commit: 72a3f649e4db2b1cc18a8e203c321cc1832435e4 Parents: 8d278d8 Author: Arpit Agarwal <[email protected]> Authored: Thu Dec 17 10:36:07 2015 -0800 Committer: Arpit Agarwal <[email protected]> Committed: Thu Dec 17 10:36:07 2015 -0800 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java | 1 + 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/72a3f649/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 78d67f6..bf26a9a 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -2501,6 +2501,9 @@ Release 2.8.0 - UNRELEASED HDFS-9198. Coalesce IBR processing in the NN. (Daryn Sharp via umamahesh) + HDFS-9565. TestDistributedFileSystem.testLocatedFileStatusStorageIdsTypes + is flaky due to race condition. (Wei-Chiu Chuang via Arpit Agarwal) + Release 2.7.3 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/72a3f649/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java index e628752..6217c45 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java @@ -830,6 +830,7 @@ public class TestDistributedFileSystem { final int repl = 2; DFSTestUtil.createFile(fs, testFile, blockSize, numBlocks * blockSize, blockSize, (short) repl, 0xADDED); + DFSTestUtil.waitForReplication(fs, testFile, (short) repl, 30000); // Get the listing RemoteIterator<LocatedFileStatus> it = fs.listLocatedStatus(testFile); assertTrue("Expected file to be present", it.hasNext());
