pvary commented on code in PR #3379:
URL: https://github.com/apache/hive/pull/3379#discussion_r905969853


##########
itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcTimeout.java:
##########
@@ -0,0 +1,93 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.hive.jdbc;
+
+import org.apache.hadoop.hive.conf.HiveConf;
+import org.apache.hive.jdbc.miniHS2.MiniHS2;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import java.sql.DriverManager;
+import java.sql.Statement;
+import java.util.HashMap;
+
+import static org.junit.Assert.assertEquals;
+
+public class TestJdbcTimeout {
+
+  private static MiniHS2 miniHS2 = null;
+
+  @BeforeClass
+  public static void beforeTest() throws Exception {
+    Class.forName(MiniHS2.getJdbcDriverName());
+    HiveConf conf = new HiveConf();
+    conf.setVar(HiveConf.ConfVars.HIVE_LOCK_MANAGER, 
"org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager");
+    miniHS2 = new MiniHS2.Builder().withConf(conf).build();
+    miniHS2.start(new HashMap<>());
+  }
+
+  @AfterClass
+  public static void afterTest() throws Exception {
+    if (miniHS2 != null && miniHS2.isStarted()) {
+      miniHS2.stop();
+    }
+  }
+
+  @Test
+  public void testDriverManagerLoginTimeout() throws Exception {
+    DriverManager.setLoginTimeout(10);
+    String url = miniHS2.getJdbcURL("default");
+    try (HiveConnection conn = (HiveConnection) 
DriverManager.getConnection(url)) {
+      assertEquals(10000, conn.getLoginTimeout());
+      assertEquals(0, conn.getSocketTimeout());
+    }
+  }
+
+  @Test
+  public void testParameterLoginTimeout() throws Exception {
+    DriverManager.setLoginTimeout(10);
+    String url = miniHS2.getJdbcURL("default", "loginTimeout=20000");
+    try (HiveConnection conn = (HiveConnection) 
DriverManager.getConnection(url)) {
+      assertEquals(20000, conn.getLoginTimeout());
+      assertEquals(0, conn.getSocketTimeout());
+    }
+  }
+
+  @Test
+  public void testParameterSocketTimeout() throws Exception {
+    DriverManager.setLoginTimeout(0);
+    String url = miniHS2.getJdbcURL("default", "socketTimeout=10000");
+    try (HiveConnection conn = (HiveConnection) 
DriverManager.getConnection(url)) {
+      assertEquals(0, conn.getLoginTimeout());
+      assertEquals(10000, conn.getSocketTimeout());
+    }
+  }
+
+  @Test
+  public void testLoginTimeoutDoesNotAffectSocketTime() throws Exception {

Review Comment:
   > I think it make sense to use DriverManager.loginTimeout as connectTimeout 
but not socketTimeout. Comparing login or connect, a query may take hours, that 
is why users report socket timeout exceptions.
   
   Was this loginTimeout used anywhere else? Do we need to keep backward 
compatibility?
   
   > >As for the testing I have found this:
   > 
>https://stackoverflow.com/questions/100841/artificially-create-a-connection-timeout-error
   >
   > Not sure if it's suitable, from my understanding, it can be used to test 
socket timeout but not connect timeout. Because the server must accept the 
connection and establish a TCP connection before reading a 
parameter(sleep=6000) passed by HTTP protocol.
   
   We can have different tests. One for the connectTimeout, and one for the 
socketTimeout, and set the other to a value which does not interfere with the 
test.
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to