[jira] [Commented] (STORM-693) KafkaBolt exception handling improvement

2015-03-02 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on STORM-693:
--

GitHub user Parth-Brahmbhatt opened a pull request:

https://github.com/apache/storm/pull/453

STORM-693: when bolt fails to write tuple, it should report error instea...

...d of silently acking.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Parth-Brahmbhatt/incubator-storm STORM-693

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/storm/pull/453.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #453


commit aadccb4cb2a6602651d31542ecf2c96d72a0edfa
Author: Parth Brahmbhatt 
Date:   2015-03-03T00:06:58Z

STORM-693: when bolt fails to write tuple, it should report error instead 
of silently acking.




> KafkaBolt exception handling improvement
> 
>
> Key: STORM-693
> URL: https://issues.apache.org/jira/browse/STORM-693
> Project: Apache Storm
>  Issue Type: Bug
>  Components: storm-kafka
>Affects Versions: 0.9.3
>Reporter: Rick Kellogg
>
> Within the KafkaBolt execute method, an error message is logged if any sort 
> of error occurs communicating with Kafka.  Unfortunately the input is still 
> acknowledged.
> Upon review of the HdfsBolt & HiveBolt, I believe the exception handling 
> block should include the following two lines:
> this.collector.reportError(ex);
> this.collector.fail(input);



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


[jira] [Commented] (STORM-693) KafkaBolt exception handling improvement

2015-03-03 Thread Rick Kellogg (JIRA)

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

Rick Kellogg commented on STORM-693:


I don't see changes in master at :

https://github.com/apache/storm/blob/master/external/storm-kafka/src/jvm/storm/kafka/bolt/KafkaBolt.java

Looks good if someone would merge.

> KafkaBolt exception handling improvement
> 
>
> Key: STORM-693
> URL: https://issues.apache.org/jira/browse/STORM-693
> Project: Apache Storm
>  Issue Type: Bug
>  Components: storm-kafka
>Affects Versions: 0.9.3
>Reporter: Rick Kellogg
>
> Within the KafkaBolt execute method, an error message is logged if any sort 
> of error occurs communicating with Kafka.  Unfortunately the input is still 
> acknowledged.
> Upon review of the HdfsBolt & HiveBolt, I believe the exception handling 
> block should include the following two lines:
> this.collector.reportError(ex);
> this.collector.fail(input);



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


[jira] [Commented] (STORM-693) KafkaBolt exception handling improvement

2015-03-05 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on STORM-693:
--

Github user ptgoetz commented on the pull request:

https://github.com/apache/storm/pull/453#issuecomment-77415797
  
+1


> KafkaBolt exception handling improvement
> 
>
> Key: STORM-693
> URL: https://issues.apache.org/jira/browse/STORM-693
> Project: Apache Storm
>  Issue Type: Bug
>  Components: storm-kafka
>Affects Versions: 0.9.3
>Reporter: Rick Kellogg
>
> Within the KafkaBolt execute method, an error message is logged if any sort 
> of error occurs communicating with Kafka.  Unfortunately the input is still 
> acknowledged.
> Upon review of the HdfsBolt & HiveBolt, I believe the exception handling 
> block should include the following two lines:
> this.collector.reportError(ex);
> this.collector.fail(input);



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


[jira] [Commented] (STORM-693) KafkaBolt exception handling improvement

2015-03-08 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on STORM-693:
--

Github user asfgit closed the pull request at:

https://github.com/apache/storm/pull/453


> KafkaBolt exception handling improvement
> 
>
> Key: STORM-693
> URL: https://issues.apache.org/jira/browse/STORM-693
> Project: Apache Storm
>  Issue Type: Bug
>  Components: storm-kafka
>Affects Versions: 0.9.3
>Reporter: Rick Kellogg
>
> Within the KafkaBolt execute method, an error message is logged if any sort 
> of error occurs communicating with Kafka.  Unfortunately the input is still 
> acknowledged.
> Upon review of the HdfsBolt & HiveBolt, I believe the exception handling 
> block should include the following two lines:
> this.collector.reportError(ex);
> this.collector.fail(input);



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


[jira] [Commented] (STORM-693) KafkaBolt exception handling improvement

2015-03-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on STORM-693:
--

Github user ptgoetz commented on the pull request:

https://github.com/apache/storm/pull/453#issuecomment-83011336
  
Merged to 0.9.x branch.


> KafkaBolt exception handling improvement
> 
>
> Key: STORM-693
> URL: https://issues.apache.org/jira/browse/STORM-693
> Project: Apache Storm
>  Issue Type: Bug
>  Components: storm-kafka
>Affects Versions: 0.9.3
>Reporter: Rick Kellogg
>Assignee: Parth Brahmbhatt
> Fix For: 0.10.0, 0.9.4
>
>
> Within the KafkaBolt execute method, an error message is logged if any sort 
> of error occurs communicating with Kafka.  Unfortunately the input is still 
> acknowledged.
> Upon review of the HdfsBolt & HiveBolt, I believe the exception handling 
> block should include the following two lines:
> this.collector.reportError(ex);
> this.collector.fail(input);



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