JainamRaval opened a new issue, #39465:
URL: https://github.com/apache/arrow/issues/39465
### Describe the bug, including details regarding any error messages,
version, and platform.
I am trying to create a lambda function in aws, which requires pyarrow as a
dependency. i have installed pyarrow along with other dependency and created a
zip folder in my local machine. after that i have created layer on aws with
that zip folder. but when i am trying to run the lambda function, it is giving
me this below error.
```
{
"errorMessage": "Unable to import module 'lambda_function': No module
named 'pyarrow.lib'",
"errorType": "Runtime.ImportModuleError",
"requestId": "4eb1a49d-751f-4e11-ad1e-2fd75319ccfb",
"stackTrace": []
}
```
Import statements in my lambda function looks like this,
```
import boto3
import pyarrow as pa
import pyarrow.parquet as pq
```
can anyone help me on this??
### Component(s)
Parquet
--
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]