In order to help me identify what are the node that create the memory leak what is this (node:24366) in the list bellow? how can i find this bad guy?
(node:24366) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 open listeners added. Use emitter.setMaxListeners() to increase limit
(node:24366) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
This is an error from nodejs itself, so can't tell from that what is causing it. It's a warning rather than an error though so not a big problem while we figure it out..
One of the nodes you have added is probably not handling redeploys correctly and is adding another listener for inputs each time you deeply. (Is usually the problem)