Experts,
I have written a custom processor and associated unit tests. Everything works well in a limited environment. However, when I set up a simple stress test, the processor causes NiFi itself to crash and restart over and over again. When I ran analysis on the heap dump generated from NiFi, it showed that the leaks suspect was the org.apache.nifi.controller.repository.StandardProcessSession class, which was consuming 81% of the heap.
My questions are:
1) What could be causing this behavior
2) Since this class is a core class, how do I go about finding where these instances are being created so I can identify the leak?