-
Notifications
You must be signed in to change notification settings - Fork 437
Closed
Labels
Description
I have a program that's pretty simple: it downloads a list of remote video files; for each one, it downloads the file locally, then uploads it with a POST to a different host.
Running in a single process, this loop steadily increases the OS process RAM usage. The lasy time I killed it off it was at around 2.5GB resident / 4.5GB virtual.
I don't know anything about memory profiling in Erlang, and I don't know for sure that this is related to hackney. But since downloading and uploading is the only thing this program does involving large amounts of data, I was wondering if it was possible that hackney might hang on to data under some circumstances.