HBASE-14563 Disable zombie TestHFileOutputFormat2

This commit is contained in:
stack 2015-10-06 13:37:10 -07:00
parent a6d90bcc97
commit aeb3a62459
1 changed files with 13 additions and 13 deletions

View File

@ -180,7 +180,7 @@ public class TestHFileOutputFormat2 {
* passed a keyvalue whose timestamp is {@link HConstants#LATEST_TIMESTAMP}.
* @see <a href="https://issues.apache.org/jira/browse/HBASE-2615">HBASE-2615</a>
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void test_LATEST_TIMESTAMP_isReplaced()
throws Exception {
Configuration conf = new Configuration(this.util.getConfiguration());
@ -232,7 +232,7 @@ public class TestHFileOutputFormat2 {
* Test that {@link HFileOutputFormat2} creates an HFile with TIMERANGE
* metadata used by time-restricted scans.
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void test_TIMERANGE() throws Exception {
Configuration conf = new Configuration(this.util.getConfiguration());
RecordWriter<ImmutableBytesWritable, Cell> writer = null;
@ -298,7 +298,7 @@ public class TestHFileOutputFormat2 {
/**
* Run small MR job.
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testWritingPEData() throws Exception {
Configuration conf = util.getConfiguration();
Path testDir = util.getDataTestDirOnTestFS("testWritingPEData");
@ -336,7 +336,7 @@ public class TestHFileOutputFormat2 {
assertTrue(files.length > 0);
}
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testJobConfiguration() throws Exception {
Configuration conf = new Configuration(this.util.getConfiguration());
conf.set("hbase.fs.tmp.dir", util.getDataTestDir("testJobConfiguration").toString());
@ -371,13 +371,13 @@ public class TestHFileOutputFormat2 {
return ret;
}
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testMRIncrementalLoad() throws Exception {
LOG.info("\nStarting test testMRIncrementalLoad\n");
doIncrementalLoadTest(false, false);
}
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testMRIncrementalLoadWithSplit() throws Exception {
LOG.info("\nStarting test testMRIncrementalLoadWithSplit\n");
doIncrementalLoadTest(true, false);
@ -391,7 +391,7 @@ public class TestHFileOutputFormat2 {
* supports explicit hostnames parameter (just like MiniDFSCluster does), we could test region
* locality features more easily.
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testMRIncrementalLoadWithLocality() throws Exception {
LOG.info("\nStarting test testMRIncrementalLoadWithLocality\n");
doIncrementalLoadTest(false, true);
@ -539,7 +539,7 @@ public class TestHFileOutputFormat2 {
*
* @throws IOException
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testSerializeDeserializeFamilyCompressionMap() throws IOException {
for (int numCfs = 0; numCfs <= 3; numCfs++) {
Configuration conf = new Configuration(this.util.getConfiguration());
@ -610,7 +610,7 @@ public class TestHFileOutputFormat2 {
*
* @throws IOException
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testSerializeDeserializeFamilyBloomTypeMap() throws IOException {
for (int numCfs = 0; numCfs <= 2; numCfs++) {
Configuration conf = new Configuration(this.util.getConfiguration());
@ -681,7 +681,7 @@ public class TestHFileOutputFormat2 {
*
* @throws IOException
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testSerializeDeserializeFamilyBlockSizeMap() throws IOException {
for (int numCfs = 0; numCfs <= 3; numCfs++) {
Configuration conf = new Configuration(this.util.getConfiguration());
@ -756,7 +756,7 @@ public class TestHFileOutputFormat2 {
*
* @throws IOException
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testSerializeDeserializeFamilyDataBlockEncodingMap() throws IOException {
for (int numCfs = 0; numCfs <= 3; numCfs++) {
Configuration conf = new Configuration(this.util.getConfiguration());
@ -842,7 +842,7 @@ public class TestHFileOutputFormat2 {
* Test that {@link HFileOutputFormat2} RecordWriter uses compression and
* bloom filter settings from the column family descriptor
*/
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testColumnFamilySettings() throws Exception {
Configuration conf = new Configuration(this.util.getConfiguration());
RecordWriter<ImmutableBytesWritable, Cell> writer = null;
@ -1016,7 +1016,7 @@ public class TestHFileOutputFormat2 {
}
}
@Test
@Ignore("Goes zombie too frequently; needs work. See HBASE-14563") @Test
public void testExcludeMinorCompaction() throws Exception {
Configuration conf = util.getConfiguration();
conf.setInt("hbase.hstore.compaction.min", 2);