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
This commit is contained in:
parent
1e04340c83
commit
3ad57c7195
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue