From 3ad57c7195806af015c73c6053a6b4b7d5061256 Mon Sep 17 00:00:00 2001 From: Andrew Kyle Purtell Date: Wed, 8 Jan 2014 18:18:55 +0000 Subject: [PATCH] HBASE-10298. TestIOFencing occasionally fails This flapping test produces low confidence results so temporarily disable it while tracking down the cause. git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1556596 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/org/apache/hadoop/hbase/TestIOFencing.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java index 6e74214fb77..cc84600cbfb 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java @@ -49,6 +49,7 @@ import org.apache.hadoop.hdfs.server.datanode.DataNode; import org.apache.hadoop.hdfs.server.namenode.FSNamesystem; import org.apache.hadoop.hdfs.server.namenode.LeaseManager; import org.apache.log4j.Level; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -202,6 +203,7 @@ public class TestIOFencing { * a new regionserver altogether. This fakes the double assignment case where region in one * location changes the files out from underneath a region being served elsewhere. */ + @Ignore("See HBASE-10298") @Test public void testFencingAroundCompaction() throws Exception { doTest(BlockCompactionsInPrepRegion.class); @@ -213,6 +215,7 @@ public class TestIOFencing { * a new regionserver altogether. This fakes the double assignment case where region in one * location changes the files out from underneath a region being served elsewhere. */ + @Ignore("See HBASE-10298") @Test public void testFencingAroundCompactionAfterWALSync() throws Exception { doTest(BlockCompactionsInCompletionRegion.class);