MAPREDUCE-6172. TestDbClasses timeouts are too aggressive. Contributed by Varun Saxena
(cherry picked from commit 2b30fb1053
)
This commit is contained in:
parent
f6d1bf5ed1
commit
2bdef5697b
|
@ -28,6 +28,9 @@ Release 2.7.0 - UNRELEASED
|
|||
correctly in case the number of mappers or reducers is zero. (MinJi Kim via
|
||||
jianhe)
|
||||
|
||||
MAPREDUCE-6172. TestDbClasses timeouts are too aggressive (Varun Saxena
|
||||
via jlowe)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -39,7 +39,7 @@ public class TestDbClasses {
|
|||
* test splitters from DataDrivenDBInputFormat. For different data types may
|
||||
* be different splitter
|
||||
*/
|
||||
@Test(timeout = 1000)
|
||||
@Test(timeout = 10000)
|
||||
public void testDataDrivenDBInputFormatSplitter() {
|
||||
DataDrivenDBInputFormat<NullDBWritable> format = new DataDrivenDBInputFormat<NullDBWritable>();
|
||||
testCommonSplitterTypes(format);
|
||||
|
@ -49,7 +49,7 @@ public class TestDbClasses {
|
|||
assertEquals(DateSplitter.class, format.getSplitter(Types.TIME).getClass());
|
||||
}
|
||||
|
||||
@Test(timeout = 1000)
|
||||
@Test(timeout = 10000)
|
||||
public void testDataDrivenDBInputFormat() throws Exception {
|
||||
JobContext jobContext = mock(JobContext.class);
|
||||
Configuration configuration = new Configuration();
|
||||
|
@ -79,7 +79,7 @@ public class TestDbClasses {
|
|||
configuration.get(DBConfiguration.INPUT_BOUNDING_QUERY));
|
||||
}
|
||||
|
||||
@Test(timeout = 1000)
|
||||
@Test(timeout = 10000)
|
||||
public void testOracleDataDrivenDBInputFormat() throws Exception {
|
||||
OracleDataDrivenDBInputFormat<NullDBWritable> format =
|
||||
new OracleDataDrivenDBInputFormatForTest();
|
||||
|
@ -96,7 +96,7 @@ public class TestDbClasses {
|
|||
* test generate sql script for OracleDBRecordReader.
|
||||
*/
|
||||
|
||||
@Test(timeout = 2000)
|
||||
@Test(timeout = 20000)
|
||||
public void testOracleDBRecordReader() throws Exception {
|
||||
DBInputSplit splitter = new DBInputSplit(1, 10);
|
||||
Configuration configuration = new Configuration();
|
||||
|
|
Loading…
Reference in New Issue