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 2018/08/30 00:28:00 UTC

[jira] [Comment Edited] (HIVE-20239) Do Not Print StackTraces to STDERR in MapJoinProcessor

    [ https://issues.apache.org/jira/browse/HIVE-20239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16596953#comment-16596953 ] 

BELUGA BEHR edited comment on HIVE-20239 at 8/30/18 12:27 AM:
--------------------------------------------------------------

I re-opened the case.  The most important part of this request was to remove {{e.printStackTrace();}} and that was not done.


was (Author: belugabehr):
I re-opened the case.  The mist important part here was removing {{e.printStackTrace();}} and that was not done.

> Do Not Print StackTraces to STDERR in MapJoinProcessor
> ------------------------------------------------------
>
>                 Key: HIVE-20239
>                 URL: https://issues.apache.org/jira/browse/HIVE-20239
>             Project: Hive
>          Issue Type: Improvement
>    Affects Versions: 3.0.0
>            Reporter: BELUGA BEHR
>            Assignee: Anurag Mantripragada
>            Priority: Minor
>              Labels: newbie, noob
>             Fix For: 4.0.0
>
>         Attachments: HIVE-20239.1.patch, HIVE-20239.2.patch
>
>
> {code:java|title=MapJoinProcessor.java}
>     } catch (Exception e) {
>       e.printStackTrace();
>       throw new SemanticException("Failed to generate new mapJoin operator " +
>           "by exception : " + e.getMessage());
>     }
> {code}
> Please change to... something like...
> {code}
>     } catch (Exception e) {
>       throw new SemanticException("Failed to generate new mapJoin operator", e);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)