[
https://issues.apache.org/jira/browse/STREAMS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14184340#comment-14184340
]
ASF GitHub Bot commented on STREAMS-199:
----------------------------------------
Github user steveblackmon commented on a diff in the pull request:
https://github.com/apache/incubator-streams/pull/109#discussion_r19378450
--- Diff:
streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsPersistWriterTask.java
---
@@ -111,14 +113,18 @@ public void run() {
Thread.currentThread().interrupt();
}
if(datum != null) {
+ this.counter.incrementReceivedCount();
try {
+ long startTime = System.currentTimeMillis();
this.writer.write(datum);
+ this.counter.addTime(System.currentTimeMillis() -
startTime);
statusCounter.incrementStatus(DatumStatus.SUCCESS);
} catch (Exception e) {
--- End diff --
Perhaps this should catch Throwable, so Errors don't result in a component
shutdown?
> Implement new Changes to StreamTasks
> ------------------------------------
>
> Key: STREAMS-199
> URL: https://issues.apache.org/jira/browse/STREAMS-199
> Project: Streams
> Issue Type: Sub-task
> Reporter: Ryan Ebanks
>
> Implement new Changes to StreamTasks
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)