[ 
https://issues.apache.org/jira/browse/HIVE-26336?focusedWorklogId=784079&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-784079
 ]

ASF GitHub Bot logged work on HIVE-26336:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 23/Jun/22 08:47
            Start Date: 23/Jun/22 08:47
    Worklog Time Spent: 10m 
      Work Description: pan3793 commented on code in PR #3379:
URL: https://github.com/apache/hive/pull/3379#discussion_r904748435


##########
itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcTimeout.java:
##########
@@ -0,0 +1,87 @@
+/*
+ * 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.fs.Path;
+import org.apache.hadoop.hdfs.DFSUtil;
+import org.apache.hadoop.hdfs.HAUtil;
+import org.apache.hadoop.hive.conf.HiveConf;
+import org.apache.hadoop.hive.conf.HiveConf.ConfVars;
+import org.apache.hive.jdbc.miniHS2.MiniHS2;
+import org.apache.hive.service.cli.HiveSQLException;
+import org.apache.hive.service.cli.session.HiveSessionHook;
+import org.apache.hive.service.cli.session.HiveSessionHookContext;
+import org.jetbrains.annotations.NotNull;
+import org.jetbrains.annotations.Nullable;
+import org.junit.*;
+
+import java.sql.*;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Set;
+import java.util.concurrent.atomic.AtomicInteger;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+public class TestJdbcTimeout {
+
+  private static MiniHS2 miniHS2 = null;
+
+  @BeforeClass
+  public static void beforeTest() throws Exception {
+    Class.forName(MiniHS2.getJdbcDriverName());
+    HiveConf conf = new HiveConf();
+    conf.setBoolVar(ConfVars.HIVE_SUPPORT_CONCURRENCY, false);
+    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 testConnection() throws Exception {
+    AtomicInteger goodCounter = new AtomicInteger(0);
+    AtomicInteger badCounter = new AtomicInteger(0);
+    DriverManager.setLoginTimeout(2);
+    String url = miniHS2.getJdbcURL();
+    Runnable run = () -> {
+      try (Connection conn = DriverManager.getConnection(url)) {
+        goodCounter.incrementAndGet();
+        try (Statement stmt = conn.createStatement()) {
+          stmt.execute("SELECT reflect('java.lang.Thread', 'sleep', 3000L)");
+        }
+      } catch (Exception exception) {
+        badCounter.incrementAndGet();
+      }
+    };
+    Thread conn1 = new Thread(run);
+    Thread conn2 = new Thread(run);
+    conn1.start();
+    conn2.start();
+    assertEquals(goodCounter.get(), 1);

Review Comment:
   I'm sorry I can not compile and run the test even on an x86 machine, the 
IDEA is stuck on building hive-exec module... and I simplified the test to 
check the variable initialization only, please let me know if this is 
sufficient or not.





Issue Time Tracking
-------------------

    Worklog Id:     (was: 784079)
    Time Spent: 1h 50m  (was: 1h 40m)

> Hive JDBC Driver should respect JDBC DriverManager#loginTimeout
> ---------------------------------------------------------------
>
>                 Key: HIVE-26336
>                 URL: https://issues.apache.org/jira/browse/HIVE-26336
>             Project: Hive
>          Issue Type: Bug
>          Components: JDBC
>    Affects Versions: 4.0.0-alpha-1
>            Reporter: Cheng Pan
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h 50m
>  Remaining Estimate: 0h
>
> Before HIVE-12371, the Hive JDBC Driver uses DriverManager#loginTimeout as 
> both connectTimeout and socketTimeout, which usually cause socket timeout 
> exceptions for users who use Hive JDBC Driver in Spring Boot project, because 
> Spring Boot will setLoginTimeout to 30s (default values).
> HIVE-12371 introduced a new parameter socketTimeout, and does not care about 
> DriverManager#loginTimeout anymore, I think it's not a correct solution.
> I think theĀ for loginTimeout, prefer to use loginTimeout (in milliseconds) 
> from jdbc connection url, and fallback to use DriverManger#getLoginTimeout 
> (in seconds).
> For socketTimeout, use socketTimeout (in milliseconds) from jdbc connection 
> url if present.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

Reply via email to