-
Hello, We are getting the following error when reading netCDF files from the mounted Azure storage container: Failed to create DataSet instance from uri /blobfuse_path_to_volume/file.nc: Error at HDF5 layer. When the code copies the file from that path to a local /tmp folder then the file can be opened without any issues. Also, the nc file can be read using File.ReadAllBytesAsync("/blobfuse_path_to_volume/file.nc") without any problems. Do you have any ideas why are we having these issues? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Blobfuse does not care what the file type is or what kind of data it has. If the file was downloaded successfully to local drive then it shall work just fine. Error that you have shared is not coming from blobfuse end. Can you share blobfuse logs to dig more into any error blobfuse might have emitted. |
Beta Was this translation helpful? Give feedback.
I have finally found the issue, and you were right - it is not caused by the blobfuse. Seems like NetCDFDataSet needs read/write access to a file but the volume was attached as a readOnly = true.