You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Gustavo Martin (Jira)" <ji...@apache.org> on 2020/05/17 14:05:00 UTC

[jira] [Updated] (ARROW-8832) [Python] AttributeError: module 'pyarrow.fs' has no attribute 'S3FileSystem'

     [ https://issues.apache.org/jira/browse/ARROW-8832?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gustavo Martin updated ARROW-8832:
----------------------------------
    Description: 
Documentation declares that pyarrow can work in this way:
{code:python}
from pyarrow import fs
s3 = fs.S3FileSystem(region='eu-west-3')
{code}
Follow link to documentation: [https://arrow.apache.org/docs/python/filesystems.html#example]

 

After installing pyarrow with this command:
{noformat}
pipenv install pyarrow==0.17.0
{noformat}
And when trying to run a simple python application: [https://github.com/gumartinm/MLForFun/tree/master/pyarrow/|https://github.com/gumartinm/MLForFun/tree/master/pyarrow/pandas]

Application ends up with the following error:
{noformat}
AttributeError: module 'pyarrow.fs' has no attribute 'S3FileSystem'{noformat}
 

This line is failing [https://github.com/apache/arrow/blob/apache-arrow-0.17.0/python/pyarrow/fs.py#L42] because *pyarrow.**_s3fs* does not exist.

 

 

 

 

 

  was:
Documentation declares that pyarrow can work in this way:
{code:python}
from pyarrow import fs
s3 = fs.S3FileSystem(region='eu-west-3')
{code}
Follow link to documentation: [https://arrow.apache.org/docs/python/filesystems.html#example]

 

After installing pyarrow with this command:
{noformat}
pipenv install pyarrow==0.17.0
{noformat}
And when trying to run a simple python application: [https://github.com/gumartinm/MLForFun/tree/master/pyarrow/pandas]

Application ends up with the following error:
{noformat}
AttributeError: module 'pyarrow.fs' has no attribute 'S3FileSystem'{noformat}
 

This line is failing [https://github.com/apache/arrow/blob/apache-arrow-0.17.0/python/pyarrow/fs.py#L42] because *pyarrow.**_s3fs* does not exist.

 

 

 

 

 


> [Python] AttributeError: module 'pyarrow.fs' has no attribute 'S3FileSystem'
> ----------------------------------------------------------------------------
>
>                 Key: ARROW-8832
>                 URL: https://issues.apache.org/jira/browse/ARROW-8832
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Python
>    Affects Versions: 0.17.0
>            Reporter: Gustavo Martin
>            Priority: Major
>
> Documentation declares that pyarrow can work in this way:
> {code:python}
> from pyarrow import fs
> s3 = fs.S3FileSystem(region='eu-west-3')
> {code}
> Follow link to documentation: [https://arrow.apache.org/docs/python/filesystems.html#example]
>  
> After installing pyarrow with this command:
> {noformat}
> pipenv install pyarrow==0.17.0
> {noformat}
> And when trying to run a simple python application: [https://github.com/gumartinm/MLForFun/tree/master/pyarrow/|https://github.com/gumartinm/MLForFun/tree/master/pyarrow/pandas]
> Application ends up with the following error:
> {noformat}
> AttributeError: module 'pyarrow.fs' has no attribute 'S3FileSystem'{noformat}
>  
> This line is failing [https://github.com/apache/arrow/blob/apache-arrow-0.17.0/python/pyarrow/fs.py#L42] because *pyarrow.**_s3fs* does not exist.
>  
>  
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)