HADOOP-14472. Azure: TestReadAndSeekPageBlobAfterWrite fails intermittently. Contributed by Mingliang Liu
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/756ff412 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/756ff412 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/756ff412 Branch: refs/heads/HDFS-7240 Commit: 756ff412afe48ce811c2e967e044d592ae43ef9c Parents: cc8bcf1 Author: Mingliang Liu <lium...@apache.org> Authored: Tue Jun 6 11:06:49 2017 -0700 Committer: Xiaoyu Yao <x...@apache.org> Committed: Thu Jun 8 10:44:51 2017 -0700 ---------------------------------------------------------------------- .../fs/azure/TestReadAndSeekPageBlobAfterWrite.java | 10 ---------- 1 file changed, 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/756ff412/hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java b/hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java index e6219df..41b8386 100644 --- a/hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java +++ b/hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java @@ -275,18 +275,8 @@ public class TestReadAndSeekPageBlobAfterWrite { writesSinceHFlush++; output.flush(); if ((i % SYNC_INTERVAL) == 0) { - long start = Time.monotonicNow(); output.hflush(); writesSinceHFlush = 0; - long end = Time.monotonicNow(); - - // A true, round-trip synchronous flush to Azure must take - // a significant amount of time or we are not syncing to storage correctly. - LOG.debug("hflush duration = " + (end - start) + " msec."); - assertTrue(String.format( - "hflush duration of %d, less than minimum expected of %d", - end - start, MINIMUM_EXPECTED_TIME), - end - start >= MINIMUM_EXPECTED_TIME); } } } finally { --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org