You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The memory allocated when an index is opened is not correctly released, in fact when the index is opened and closed multiple times you can notice the memory increase. Does anyone have any idea how to solve this?
index=pygrib.index(index_path)
index.select(shortName='u') # Allocates memoryindex.close() # Closed index but memory is not released (easily checkable using a memory profiler)
The memory allocated when an index is opened is not correctly released, in fact when the index is opened and closed multiple times you can notice the memory increase. Does anyone have any idea how to solve this?
How to reproduce
Create and store my index
Access to the index
Memory profiler
The text was updated successfully, but these errors were encountered: