Karthikeyan Janakiraman created ARROW-12061:
-----------------------------------------------
Summary: Proxy set as environment variables doesn't seems to be
picked up
Key: ARROW-12061
URL: https://issues.apache.org/jira/browse/ARROW-12061
Project: Apache Arrow
Issue Type: Bug
Components: R
Affects Versions: 3.0.0
Environment: QA
Reporter: Karthikeyan Janakiraman
I am using arrow 3.0.0 to read parquet from AWS S3. I have set the proxy in R
terminal using Sys.setenv however it doesn't seemed to have picked up when
arrow tries to hit the S3 bucket. Appreciate any help here please.
{code:java}
> Sys.setenv(http_proxy="http://proxy:9099")
> Sys.setenv(https_proxy="http://proxy:9099")
> Sys.setenv(HTTPS_PROXY="http://proxy:9099")
> Sys.setenv(HTTP_PROXY="http://proxy:9099")
> Sys.getenv("http_proxy")
[1] "http://proxy:9099"
> df <-
> read_parquet("s3://my_bucket/test-parquet/refinement.parquet?region=eu-west-1")
Error: IOError: When reading information for key
'test-parquet/refinement.parquet' in bucket 'my_bucket': AWS Error [code 99]:
Unable to connect to endpoint with address : 52.218.57.8
>
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)