KellyWalker opened a new issue, #37960:
URL: https://github.com/apache/arrow/issues/37960

   ### Describe the enhancement requested
   
   Currently, this works:
   
   ```
   from gcsfs import GCSFileSystem
   import pyarrow.parquet as pq
   gcs = GCSFileSystem()
   parquet_file = pq.read_table("/bucket/path/to/file.parquet", filesystem=gcs)
   ```
   
   But this does not:
   
   ```
   import pyarrow.parquet as pq
   parquet_file = pq.read_table("gs://bucket/path/to/file.parquet")
   ```
   
   It would be nice if the latter worked directly without needing to specify 
the filesystem.
   
   ### Component(s)
   
   Parquet, 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]

Reply via email to