You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "BELUGA BEHR (JIRA)" <ji...@apache.org> on 2017/06/15 18:51:00 UTC

[jira] [Updated] (HIVE-16910) RpcConfiguration - Improper Cast From Long To Int

     [ https://issues.apache.org/jira/browse/HIVE-16910?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

BELUGA BEHR updated HIVE-16910:
-------------------------------
    Attachment: HIVE-16910.1.patch

> RpcConfiguration - Improper Cast From Long To Int
> -------------------------------------------------
>
>                 Key: HIVE-16910
>                 URL: https://issues.apache.org/jira/browse/HIVE-16910
>             Project: Hive
>          Issue Type: Bug
>          Components: Spark
>    Affects Versions: 2.1.1, 3.0.0
>            Reporter: BELUGA BEHR
>            Priority: Minor
>         Attachments: HIVE-16910.1.patch
>
>
> {code:title=org.apache.hive.spark.client.rpc.RpcConfiguration}
>   long getConnectTimeoutMs() {
>     String value = config.get(HiveConf.ConfVars.SPARK_RPC_CLIENT_CONNECT_TIMEOUT.varname);
>     return value != null ? Integer.parseInt(value) : DEFAULT_CONF.getTimeVar(
>       HiveConf.ConfVars.SPARK_RPC_CLIENT_CONNECT_TIMEOUT, TimeUnit.MILLISECONDS);
>   }
> {code}
> This method returns a *long* but it is trying to parse the configuration string into an *int*.
>  {{Integer.parseInt}}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)