[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2019-01-09 Thread Mani M (JIRA)


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

Mani M commented on HIVE-8346:
--

The fix for this ticket is already available in HIVE-9860, HIVE-13183 under the 
fix version #1.2.0, #2.1.0, so closing this ticket.

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Mani M
>Priority: Minor
>  Labels: newbie
> Fix For: 1.2.0, 2.1.0
>
> Attachments: image-2019-01-09-17-31-15-247.png
>
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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


[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2019-01-09 Thread Peter Vary (JIRA)


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

Peter Vary commented on HIVE-8346:
--

[~rmsm...@gmail.com]: Good catch! Please feel free to close the jira. Link the 
other Jira which fixed it. Also please check the change which fixed this, and 
set the fix version accordingly.

Thanks,

Peter

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Mani M
>Priority: Minor
>  Labels: newbie
> Attachments: image-2019-01-09-17-31-15-247.png
>
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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


[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2019-01-08 Thread Mani M (JIRA)


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

Mani M commented on HIVE-8346:
--

HI [~pvary], 

As of the ticket is raised only the error message was written in the log 
Component.  But after subsequent fix this had been changed to include the full 
exception in the log file

changed as the part of HIVE-9860

and subsequently changed in HIVE-13183

!image-2019-01-09-17-31-15-247.png!

 

Screenshot is attached herewith.

So, I think, this Jira ticket is no-longer valid, we can close this.

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Mani M
>Priority: Minor
>  Labels: newbie
> Attachments: image-2019-01-09-17-31-15-247.png
>
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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


[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2019-01-08 Thread Chen Xin Yu (JIRA)


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

Chen Xin Yu commented on HIVE-8346:
---

Sorry for response late, changed the assignee.

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Mani M
>Priority: Minor
>  Labels: newbie
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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


[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2019-01-08 Thread Mani M (JIRA)


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

Mani M commented on HIVE-8346:
--

Hi [~qihanycx]

Can I take this Ticket.

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Chen Xin Yu
>Priority: Minor
>  Labels: newbie
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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


[jira] [Commented] (HIVE-8346) MapRedLocalTask Error Handling

2018-12-25 Thread Mani M (JIRA)


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

Mani M commented on HIVE-8346:
--

HI [~qihanycx]

Can I take this ticket ?

> MapRedLocalTask Error Handling
> --
>
> Key: HIVE-8346
> URL: https://issues.apache.org/jira/browse/HIVE-8346
> Project: Hive
>  Issue Type: Bug
>  Components: Logging
>Affects Versions: 0.14.0
>Reporter: Szehon Ho
>Assignee: Chen Xin Yu
>Priority: Minor
>  Labels: newbie
>
> If there are any exceptions trying to fork a local task, the exception 
> message is logged but not the stack trace.  There can be a lot of issues 
> forking a process, so we should log the stack trace for better debuggability.
> Code in MapRedLocalTask.executeInChildJVM(DriverContext ctx):
> {code}
> } catch (Exception e) {
>   e.printStackTrace();
>   LOG.error("Exception: " + e.getMessage());
>   return (1);
> }
> {code}



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