I hope someone that is more familiar with nodejs can help point me int he right direction.
Background:
I have a https server that seems to be leaking memory. The profiler give me the following information on the retained memory:
This is what is leaking with every https request:
headers in IncomingMessage @387013
incoming in HTTPParser @73119
1109 in (Global handles) @27
parser in function() @382505
parser in CleartextStream @382491
parser in function() @382503
parser in function() @382489
parser in function serverSocketCloseListener() @382493
parser in function abortIncoming() @382497
parser in function() @397821
parser in function() @410755
I think this is internal to nodejs, where should I look at to see what is holding on to this memory? Any suggestions or direction would be appreciated.