Skip to content Skip to sidebar Skip to footer

Opening A Corrupted Pytables Hdf5 File

I am hoping for some help in opening a corrupted HDF5 file. I am accessing PyTables via Pandas, but a pd.read_hdf() call produces the following error. I don't know anything about t

Solution 1:

your file is borked. no way to recover from this. this is specifically warned against (using multiple threads/processes as writers). see docs here.

HDF5 is NOT threadsafe/process safe for writers.

Post a Comment for "Opening A Corrupted Pytables Hdf5 File"