Github user steveblackmon commented on a diff in the pull request:

    https://github.com/apache/incubator-streams/pull/109#discussion_r19378453
  
    --- 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) {
                             LOGGER.error("Error writing to persist writer {}", 
this.writer.getClass().getSimpleName(), e);
                             this.keepRunning.set(false); // why do we shutdown 
on a failed write ?
    --- End diff --
    
    Can we remove this line?  I'd prefer a single write failure not terminate 
the component.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to