AWS python lambda - fails to import oracledb #32
-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 38 replies
-
I don't know much about AWS lambda but the error you are getting is suggesting that the shared library (C extension) is not being loaded properly. My directory looks like this:
Take note of the 3 files with .so -- these are the ones that your installation doesn't seem to be able to find! |
Beta Was this translation helpful? Give feedback.
-
Hello Guys, Same issue with AWS Glue as well , but I have confirmed that .so files existence in the zip. still it's failing |
Beta Was this translation helpful? Give feedback.
-
I'm getting the same error in AWS Lambda and I've check library is correctly installed. Also installed cryptography just in case. I installed linux compatible version. |
Beta Was this translation helpful? Give feedback.
-
I had a very similar problem to this. At first it was because I downloaded the library on a Windows machine before I zipped it up, but it wasn't working even with a Linux version. Then I tried downloading it with the binary-only flag ( |
Beta Was this translation helpful? Give feedback.
-
Are you able to resolve an issue? I am facing the same issue. Glue version 4, Python version 3.10 |
Beta Was this translation helpful? Give feedback.
I don't know much about AWS lambda but the error you are getting is suggesting that the shared library (C extension) is not being loaded properly. My directory looks like this:
Take note of the 3 files with .so -- these are the ones that your installation doesn't seem to be able to find!