-
Notifications
You must be signed in to change notification settings - Fork 579
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
Potential thread leak in echache3 #3204
Comments
Seems like during cache.remove(), eventually MappedPageSource.free() is called, where we submit a task asynchronously with above thread name, and these threads are not getting cleaned up even after cacheManager is closed. |
@chrisdennis Do you know if this would be picked up? |
@chrisdennis Any update on this? |
I was trying echache3 (3.10.8) purely as a disk store. While testing with multiple gets/puts, it works fine as expected.
But when I tried to use
remove
API and then close the cache afterwards, there was still some thread(MappedByteBufferSource) lingering onMy code setup and steps to reproduce:
After this, I always see above thread leaks happening. Can someone look into this and verify?
The text was updated successfully, but these errors were encountered: