Jaideep Dhok created HIVE-6184:
----------------------------------
Summary: Bug in SessionManager.stop() in HiveServer2
Key: HIVE-6184
URL: https://issues.apache.org/jira/browse/HIVE-6184
Project: Hive
Issue Type: Bug
Components: HiveServer2
Reporter: Jaideep Dhok
The conf setting hive.server2.async.exec.shutdown.timeout is set to a long
value (10L) in HiveConf.java, but it is read using getIntVar in
SessionManager.stop.
Instead it should be read as -
{code}
long timeout =
hiveConf.getLongVar(ConfVars.HIVE_SERVER2_ASYNC_EXEC_SHUTDOWN_TIMEOUT);
{code}
Current code will either cause an assertion error if assertions are enabled, or
it would return the timeout as -1 if the property is not set in hive-site.xml
Workaround is to explicitly set the property in hive-site.xml
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)