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.FSNamesystem;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.LeaseManager;
|
import org.apache.hadoop.hdfs.server.namenode.LeaseManager;
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.experimental.categories.Category;
|
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
|
* 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.
|
* location changes the files out from underneath a region being served elsewhere.
|
||||||
*/
|
*/
|
||||||
|
@Ignore("See HBASE-10298")
|
||||||
@Test
|
@Test
|
||||||
public void testFencingAroundCompaction() throws Exception {
|
public void testFencingAroundCompaction() throws Exception {
|
||||||
doTest(BlockCompactionsInPrepRegion.class);
|
doTest(BlockCompactionsInPrepRegion.class);
|
||||||
|
@ -213,6 +215,7 @@ public class TestIOFencing {
|
||||||
* a new regionserver altogether. This fakes the double assignment case where region in one
|
* 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.
|
* location changes the files out from underneath a region being served elsewhere.
|
||||||
*/
|
*/
|
||||||
|
@Ignore("See HBASE-10298")
|
||||||
@Test
|
@Test
|
||||||
public void testFencingAroundCompactionAfterWALSync() throws Exception {
|
public void testFencingAroundCompactionAfterWALSync() throws Exception {
|
||||||
doTest(BlockCompactionsInCompletionRegion.class);
|
doTest(BlockCompactionsInCompletionRegion.class);
|
||||||
|
|
Loading…
Reference in New Issue