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

ENH: add destructor to HDFStore #61169

Closed
1 of 3 tasks
overjoy opened this issue Mar 23, 2025 · 2 comments
Closed
1 of 3 tasks

ENH: add destructor to HDFStore #61169

overjoy opened this issue Mar 23, 2025 · 2 comments
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member

Comments

@overjoy
Copy link

overjoy commented Mar 23, 2025

Feature Type

  • Adding new functionality to pandas

  • Changing existing functionality in pandas

  • Removing existing functionality in pandas

Problem Description

When using pd.HDFStore methods directly the store often stays open. Especially in interactive context. That can cause some permission errors:

In [1]: pd.Series([1,2,3]).to_hdf('foo.h5', 'x')

In [2]: pd.Series([1,2,3]).to_hdf('foo.h5', 'y')

In [3]: pd.HDFStore('foo.h5', 'r').keys()
Out[3]: ['/x', '/y']

In [4]: pd.Series([1,2,3]).to_hdf('foo.h5', 'z')
ValueError: The file 'foo.h5' is already opened, but in read-only mode.  Please close it before reopening in append mode.

In [5]: os.rename('foo.h5', 'bar.h5')
On Windows:
PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'foo.h5' -> 'bar.h5' 

Feature Description

Adding destructor solves this

pd.io.pytables.HDFStore.__del__ = lambda self: self.close()

Alternative Solutions

.

Additional Context

No response

@overjoy overjoy added Enhancement Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 23, 2025
@snitish
Copy link
Member

snitish commented Mar 24, 2025

Context managers and explicitly calling .close() are the two recommended ways to deal with objects like HDFStore. I don't think it is good practice to rely on the __del__ method, as it is not guaranteed to be called.

@mroeschke
Copy link
Member

Agreed with @snitish. Since HDFStore already has APIs for closing, closing this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member
Projects
None yet
Development

No branches or pull requests

3 participants