-
Notifications
You must be signed in to change notification settings - Fork 143
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
Changed requirements in HDF5_jll's libhdf5.so
for libcurl.so
?
#1117
Comments
I have also encountered this problem. I cannot solve it now. |
Can you narrow down the version numbers are involved? Does this occur with any version of HDF5.jl? What if you try HDF5.jl 0.16.15? What versions of HDF5_jll does this occur for? Libcurl is needed by HDF5 for the the read-only S3 (ROS3) driver. |
After using lower version JDF5.jl, this problem disappeared. Thank you! |
Can you tell us what versions resolved the issue? |
At least, I use "add [email protected]", there is no problem. If I use "add HDF5", the newest version was used, the above issue happened. The reason is that the Libcurl library version is low, which was not suitable for julia. I don't understand the "read-only S3 (ROS3) driver" for HDF5. I always use HDF5 in my C or FORTRAN codes. This is the first time to use HDF5 in julia. |
Basically, the ROS3 driver let's the HDF5 library talk to a HDF5 file stored in Amazon S3. This requires libcurl. I'm guessing that the operating system libcurl uses OpenSSL and thus uses symbol CURL_OPENSSL_4 rather than CURL_4 |
That's right! The error printout shows me the libcurl uses OpenSSL. Should I install lincurl using other SSL configuration? Maybe this can solve the problem. |
Julia's libcurl recipe is here: It usually uses mbedTLS rather than OpenSSL. |
Up until recently (say 1-2 weeks ago), we always had to set
in our GitHub Action workflow when using the locally installed
/usr/lib/x86_64-linux-gnu/hdf5/openmpi/libhdf5.so
in the GitHub runner. Otherwise, we would get an error such as(see, e.g., here).
This
LD_PRELOAD
funny business was OK-ish, since it was only required for CI jobs on GitHub runners and it also worked with the JLL-providedlibhdf5.so
library.However, since a few days ago, preloading the system
libcurl.so
does not work anymore with the JLL-providedlibhdf5.so
. If we do that, we get the following error:(see, e.g., here).
Does anyone know where this change is coming from and/or whether there is a way around this? The trouble this causes us is that in our CI scripts, we now have to install HDF5 without
LD_PRELOAD
being set, then configure our project to use the locallibhdf5.so
, then setLD_PRELOAD
, then disable it again when we run some Julia tests (which use the JLL libraries), and then set it again once we run our parallel tests with the local MPI+HDF5 stack.cc @bgeihe
The text was updated successfully, but these errors were encountered: