Jagadish created SAMZA-1077:
-------------------------------
Summary: SamzaContainer should catch all Throwables instead of
only exceptions
Key: SAMZA-1077
URL: https://issues.apache.org/jira/browse/SAMZA-1077
Project: Samza
Issue Type: Bug
Reporter: Jagadish
Here's the startup sequence of the SamzaContainer.
```
startProducers
startTask
startConsumers
startSecurityManger
info("Entering run loop.")
addShutdownHook
runLoop.run
} catch {
case e: Exception =>
error("Caught exception in process loop.", e)
throw e
} finally {
info("Shutting down.")
shutdownConsumers
shutdownTask
shutdownStores
```
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)