I am using _collector.fail(input) to report failure along with a custom
failure handler using
stormConfig.put(ConfigUtils.CONFIG_FAIL_HANDLER, "com.custom.FailureHandler"
);

The bolt that I have implemented can fail due to several reasons. I wanted
to report the failure based grouped by the failure type or the java
exception that caused the failure. The _collector.fail(input) lets me
report failures. Is there another way to report the failure type as well?

- R

Reply via email to