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
While writing to my hdf5 file with swmr_mode on, I tried to open the hdf5 file with the extension, but I got the error Request failed with status code 500 on the frontend and OSError: Unable to synchronously open file on the backend.
One issue is that the SWMR mode requires HDF5>=v110, so I don't think you can open files created with older versions of the HDF5 library with swmr=True (needs to be tested). However it should be possible to catch the exception raised when trying to open a file that is already opened in SWMR mode and retry opening it with swmr=True.
Another limitation is that the h5web viewer caches the data, so AFAIK, updates of the HDF5 file will not be taken into account by the viewer once the data has been loaded.
While writing to my hdf5 file with
swmr_mode
on, I tried to open the hdf5 file with the extension, but I got the errorRequest failed with status code 500
on the frontend andOSError: Unable to synchronously open file
on the backend.Example can be found on https://docs.h5py.org/en/stable/swmr.html#using-the-swmr-feature-from-h5py
If we add the option
"swmr": True
tojupyterlab-h5web/jupyterlab_h5web/handlers.py
Line 44 in d926bac
it can enable the
swmr
feature for the extension.The text was updated successfully, but these errors were encountered: