Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memory leak in asyncio operation #26

Open
govindamagrawal opened this issue Oct 15, 2020 · 3 comments
Open

Memory leak in asyncio operation #26

govindamagrawal opened this issue Oct 15, 2020 · 3 comments

Comments

@govindamagrawal
Copy link

Hi,
In p3ch15/request_batching_server.py, there is a excellent code for asycnio. But I am gettting a memory leak there. The GPU memory is increasing regularly. The rate of memory increment is proportional to the number of input it is getting. Can you suggest some method how to debug this?
Thanks in advance.

@t-vi
Copy link

t-vi commented Oct 16, 2020

Hi,

oh oh. This should not happen, thank you for reporting!

What I would do as a first step is to look at process_input, specifically at the end

return our_task["output"]

Do the following:

  output = our_task["output"]
  for k in our_task.keys():
     del our_task[k]
  return output

(or somesuch).
Most likely, there is a circular reference somewhere, and this would help break it.
You could also call gc.collect() now and then, but the first thing I'd try is to empty the task dictionary to avoid references that keep objects from being deallocated.

Can you please check if that improves things for you?

Best regards

Thomas

@govindamagrawal
Copy link
Author

@t-vi thanks for replying. Actually I found out that it was due to large queue size I had given, as a result, it was storing all those tensors and memory was getting full.
Thanks again.

@t-vi
Copy link

t-vi commented Oct 18, 2020

😅 So now it's gone or just not as bad?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants