This is an automated email from the ASF dual-hosted git repository.
pvary pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 5d6426d Hive: increase and standardize test time out (#2529)
5d6426d is described below
commit 5d6426d0c7440a45f4f411b5c2483c12ef13c0e8
Author: Marton Bod <[email protected]>
AuthorDate: Wed Apr 28 09:45:25 2021 +0200
Hive: increase and standardize test time out (#2529)
---
.../iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/mr/src/test/java/org/apache/iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java
b/mr/src/test/java/org/apache/iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java
index 48bd181..bb47860 100644
---
a/mr/src/test/java/org/apache/iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java
+++
b/mr/src/test/java/org/apache/iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java
@@ -138,7 +138,7 @@ public class TestHiveIcebergStorageHandlerWithEngine {
public TemporaryFolder temp = new TemporaryFolder();
@Rule
- public Timeout timeout = new Timeout(40000, TimeUnit.MILLISECONDS);
+ public Timeout timeout = new Timeout(200_000, TimeUnit.MILLISECONDS);
@BeforeClass
public static void beforeClass() {
@@ -249,7 +249,7 @@ public class TestHiveIcebergStorageHandlerWithEngine {
Assert.assertArrayEquals(new Object[] {102L, 1L, 33.33d}, rows.get(2));
}
- @Test(timeout = 100000)
+ @Test
public void testJoinTablesSupportedTypes() throws IOException {
for (int i = 0; i < SUPPORTED_TYPES.size(); i++) {
Type type = SUPPORTED_TYPES.get(i);
@@ -272,7 +272,7 @@ public class TestHiveIcebergStorageHandlerWithEngine {
}
}
- @Test(timeout = 100000)
+ @Test
public void testSelectDistinctFromTable() throws IOException {
for (int i = 0; i < SUPPORTED_TYPES.size(); i++) {
Type type = SUPPORTED_TYPES.get(i);
@@ -315,7 +315,7 @@ public class TestHiveIcebergStorageHandlerWithEngine {
HiveIcebergTestUtils.validateData(table,
HiveIcebergStorageHandlerTestUtils.CUSTOMER_RECORDS, 0);
}
- @Test(timeout = 100000)
+ @Test
public void testInsertSupportedTypes() throws IOException {
Assume.assumeTrue("Tez write is not implemented yet",
executionEngine.equals("mr"));
for (int i = 0; i < SUPPORTED_TYPES.size(); i++) {