You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/26 09:14:27 UTC

[GitHub] [arrow] dariocurr opened a new pull request, #13238: [MINOR] fix docs and comment

dariocurr opened a new pull request, #13238:
URL: https://github.com/apache/arrow/pull/13238

   Hi, I am Dario, a developer at [BuildNN](https://github.com/buildnn). First of all, thank you for your work!
   
   Today I was trying to connect to [minio](https://min.io/) using [`S3FileSystem`](https://arrow.apache.org/docs/python/generated/pyarrow.fs.S3FileSystem.html).
   So I tried `endpoint_override="localhost:9000"` as suggested in your documentation, but I got the following error:
   
   ```py
   File "pyarrow/error.pxi", line 114, in pyarrow.lib.check_status
   OSError: When creating bucket 'test-bucket': AWS Error [code 99]: curlCode: 35, SSL connect error
   ```
   
   After some tries, I discovered that the protocol prefix is required (e.g. `http:\\`), so when I use `endpoint_override="http://localhost:9000"` everything works just fine.
   
   I guess then that the documentation is not updated


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13238: [MINOR] fix docs and comment

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13238:
URL: https://github.com/apache/arrow/pull/13238#issuecomment-1138331085

   <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
     distributed with this work for additional information
     regarding copyright ownership.  The ASF licenses this file
     to you under the Apache License, Version 2.0 (the
     "License"); you may not use this file except in compliance
     with the License.  You may obtain a copy of the License at
   
       http://www.apache.org/licenses/LICENSE-2.0
   
     Unless required by applicable law or agreed to in writing,
     software distributed under the License is distributed on an
     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
   -->
   
   Thanks for opening a pull request!
   
   If this is not a [minor PR](https://github.com/apache/arrow/blob/master/CONTRIBUTING.md#Minor-Fixes). Could you open an issue for this pull request on JIRA? https://issues.apache.org/jira/browse/ARROW
   
   Opening JIRAs ahead of time contributes to the [Openness](http://theapacheway.com/open/#:~:text=Openness%20allows%20new%20users%20the,must%20happen%20in%20the%20open.) of the Apache Arrow project.
   
   Then could you also rename pull request title in the following format?
   
       ARROW-${JIRA_ID}: [${COMPONENT}] ${SUMMARY}
   
   or
   
       MINOR: [${COMPONENT}] ${SUMMARY}
   
   See also:
   
     * [Other pull requests](https://github.com/apache/arrow/pulls/)
     * [Contribution Guidelines - How to contribute patches](https://arrow.apache.org/docs/developers/contributing.html#how-to-contribute-patches)
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] pitrou commented on pull request #13238: [MINOR] [Python Docs] Fix docs and comment for pyarrow.fs.S3FileSystem

Posted by GitBox <gi...@apache.org>.
pitrou commented on PR #13238:
URL: https://github.com/apache/arrow/pull/13238#issuecomment-1141288982

   > After some tries, I discovered that the protocol prefix is required (e.g. `http:\\`), so when I use `endpoint_override="http://localhost:9000"` everything works just fine.
   
   It is not. You can actually use `endpoint_override="localhost:9000"`. The issue here is that Minio is listening in non-encrypted mode, so you must also pass `scheme="http"`.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] dariocurr closed pull request #13238: [MINOR] [Python Docs] Fix docs and comment for pyarrow.fs.S3FileSystem

Posted by GitBox <gi...@apache.org>.
dariocurr closed pull request #13238: [MINOR] [Python Docs] Fix docs and comment for pyarrow.fs.S3FileSystem
URL: https://github.com/apache/arrow/pull/13238


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] dariocurr commented on pull request #13238: [MINOR] [Python Docs] Fix docs and comment for pyarrow.fs.S3FileSystem

Posted by GitBox <gi...@apache.org>.
dariocurr commented on PR #13238:
URL: https://github.com/apache/arrow/pull/13238#issuecomment-1141476781

   Thanks for the clarification


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org