HBASE-14606 TestSecureLoadIncrementalHFiles tests timed out in trunk build on apache

This commit is contained in:
stack 2015-10-14 09:29:20 -07:00
parent 4588620a04
commit 0818df79d3

View File

@ -100,7 +100,7 @@ public class TestLoadIncrementalHFiles {
* Test case that creates some regions and loads
* HFiles that fit snugly inside those regions
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testSimpleLoad() throws Exception {
runTest("testSimpleLoad", BloomType.NONE,
new byte[][][] {
@ -113,7 +113,7 @@ public class TestLoadIncrementalHFiles {
* Test case that creates some regions and loads
* HFiles that cross the boundaries of those regions
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testRegionCrossingLoad() throws Exception {
runTest("testRegionCrossingLoad", BloomType.NONE,
new byte[][][] {
@ -137,7 +137,7 @@ public class TestLoadIncrementalHFiles {
/**
* Test loading into a column family that has a ROWCOL bloom filter.
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testRegionCrossingRowColBloom() throws Exception {
runTest("testRegionCrossingLoadRowColBloom", BloomType.ROWCOL,
new byte[][][] {
@ -150,7 +150,7 @@ public class TestLoadIncrementalHFiles {
* Test case that creates some regions and loads HFiles that have
* different region boundaries than the table pre-split.
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testSimpleHFileSplit() throws Exception {
runTest("testHFileSplit", BloomType.NONE,
new byte[][] {
@ -177,7 +177,7 @@ public class TestLoadIncrementalHFiles {
* Test case that creates some regions and loads HFiles that cross the boundaries
* have a ROW bloom filter and a different region boundaries than the table pre-split.
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testRegionCrossingHFileSplitRowBloom() throws Exception {
testRegionCrossingHFileSplit(BloomType.ROW);
}
@ -186,7 +186,7 @@ public class TestLoadIncrementalHFiles {
* Test case that creates some regions and loads HFiles that cross the boundaries
* have a ROWCOL bloom filter and a different region boundaries than the table pre-split.
*/
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testRegionCrossingHFileSplitRowColBloom() throws Exception {
testRegionCrossingHFileSplit(BloomType.ROWCOL);
}
@ -318,12 +318,12 @@ public class TestLoadIncrementalHFiles {
}
}
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testNonHfileFolderWithUnmatchedFamilyName() throws Exception {
testNonHfileFolder("testNonHfileFolderWithUnmatchedFamilyName", true);
}
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testNonHfileFolder() throws Exception {
testNonHfileFolder("testNonHfileFolder", false);
}
@ -388,7 +388,7 @@ public class TestLoadIncrementalHFiles {
}
}
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testSplitStoreFile() throws IOException {
Path dir = util.getDataTestDirOnTestFS("testSplitHFile");
FileSystem fs = util.getTestFileSystem();
@ -435,7 +435,7 @@ public class TestLoadIncrementalHFiles {
map.put(last, value-1);
}
@Test
@Test(timeout = 120000)
public void testInferBoundaries() {
TreeMap<byte[], Integer> map = new TreeMap<byte[], Integer>(Bytes.BYTES_COMPARATOR);
@ -526,7 +526,7 @@ public class TestLoadIncrementalHFiles {
loader.run(args);
}
@Test(timeout = 60000)
@Test(timeout = 120000)
public void testTableWithCFNameStartWithUnderScore() throws Exception {
Path dir = util.getDataTestDirOnTestFS("cfNameStartWithUnderScore");
FileSystem fs = util.getTestFileSystem();