When using pandas.to_hdf function to save data to a HDF5 file, I'm getting the following warning:
C:\{my path to conda environment}\lib\site-packages\tables\file.py:426:
UserWarning: a closed node found in the registry: ``/{my object key}/meta/{my column name}/meta/_i_table``
warnings.warn("a closed node found in the registry: "
I wasn't able to google what this warning could mean and looking into the relevant PyTables docs didn't help.
Does anybody have an idea?
Details:
- Python 3.8.2, PyTables 3.6.1, pandas 1.0.3
- The saved data seem to be alright.
- I'm calling the pandas.to_hdf function as follows:
to_hdf(filename, key, mode = mode, complib='blosc', format = 'table', append = True)
, where mode is either 'w' or 'a' (the warning is raised in both cases).