thinkORo opened a new issue, #40754:
URL: https://github.com/apache/arrow/issues/40754
### Describe the usage question you have. Please include as many useful
details as possible.
I would like to read a CSV file from my TLS-secured object storage (minio).
Here is my code and configuration:
```
from pyarrow import fs, csv, parquet
minio = fs.S3FileSystem(
endpoint_override="https://localhost:port",
access_key="user1234",
secret_key="password1234",
)
dataCSV = minio.open_input_file("bucket/filename.csv")
```
I get the following error message:
```
OSError: When reading information for key 'filename.csv' in bucket 'bucket':
AWS Error NETWORK_CONNECTION during HeadObject operation: curlCode: 60, SSL
peer certificate or SSH remote key was not OK
```
If I use the same credentials to read the data with duckDB, it works
perfectly.
What am I doing wrong?
### Component(s)
Python
--
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]