You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kafka.apache.org by "Matthias J. Sax (JIRA)" <ji...@apache.org> on 2017/09/19 23:02:00 UTC

[jira] [Created] (KAFKA-5937) Improve ProcessorStateManager exception handling

Matthias J. Sax created KAFKA-5937:
--------------------------------------

             Summary: Improve ProcessorStateManager exception handling
                 Key: KAFKA-5937
                 URL: https://issues.apache.org/jira/browse/KAFKA-5937
             Project: Kafka
          Issue Type: Sub-task
          Components: streams
    Affects Versions: 0.11.0.0, 0.11.0.1
            Reporter: Matthias J. Sax
            Assignee: Matthias J. Sax


We identified the follow issues:

- constructor calls {{StateDirectory#directoryForTask() }} and wraps throw ProcessorStateException with LockException and rethrows -> we should not change the exception type here
- {{ProcessorStateManager#close()}} loops through all stores and calls {{StateStore#close()}}; it catches {{Exception}} and moves on to close all stores -> rethrows first exception eventually as-is -> we should wrap with {{ProcessotStateException}} before rethrowing
- {{ProcessorStateManager#flush()}} loops through all stores and calls {{StateStore#flush()}}; it stops on first {{Exception}} -> we should keep looping and flush all remaining stores before rethrowing at the end




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)