gbarrospfrmwk commented on issue #38749: URL: https://github.com/apache/arrow/issues/38749#issuecomment-1820098920
I think I found out, I did import it directly and got the error `/lib64/libm.so.6: version GLIBC_2.27 not found (required by /tmp/sls-py-req/pyarrow/libarrow.so.1400)`. After some research I saw that the python lambda uses Amazon Linux 2 which has `glibc 2.26` but the lib expects the version `2.27`, so I have to change my lambda to use Amazon Linux 2023 with `glibc 2.34` if it's not really compatible. As a workaround, I installed the `pyarrow_hotfix` to keep using the pyarrow 12.0.1 but with the security issue solved. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
