You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Ashutosh Chauhan (JIRA)" <ji...@apache.org> on 2014/11/15 20:35:33 UTC

[jira] [Updated] (HIVE-8382) ConstantPropagateProcFactory#isDeterministicUdf adds a lot of ERROR level logs

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

Ashutosh Chauhan updated HIVE-8382:
-----------------------------------
       Resolution: Fixed
    Fix Version/s: 0.14.0
         Assignee: Ashutosh Chauhan
           Status: Resolved  (was: Patch Available)

This got fixed as by-product of HIVE-8428 which made that exception and thus LOG.error() go away. Feel free to reopen if you still those error messages.

> ConstantPropagateProcFactory#isDeterministicUdf adds a lot of ERROR level logs
> ------------------------------------------------------------------------------
>
>                 Key: HIVE-8382
>                 URL: https://issues.apache.org/jira/browse/HIVE-8382
>             Project: Hive
>          Issue Type: Bug
>          Components: Logical Optimizer
>    Affects Versions: 0.14.0
>            Reporter: Vaibhav Gumashta
>            Assignee: Ashutosh Chauhan
>             Fix For: 0.14.0
>
>         Attachments: HIVE-8382.1.patch.txt
>
>
> Makes it hard to go over the hive log to figure out real errors:
> {code}
> try {
>         UDF udfInternal =
>             (UDF) Class.forName(bridge.getUdfClassName(), true, Utilities.getSessionSpecifiedClassLoader())
>                 .newInstance();
>         files = udfInternal.getRequiredFiles();
>         jars = udf.getRequiredJars();
>       } catch (Exception e) {
>         LOG.error("The UDF implementation class '" + udfClassName
>             + "' is not present in the class path");
>         return false;
>       }
> {code}
> I think we should either log this at INFO or DEBUG level.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)