kevinjqliu opened a new pull request, #7432: URL: https://github.com/apache/iceberg/pull/7432
Use fsspec implementation of LocalFileSysteminstead of pyarrow implementation ### Context the io implementation [prefers ](https://github.com/apache/iceberg/blob/master/python/pyiceberg/io/__init__.py#L264)pyarrow and will [check if the ](https://github.com/apache/iceberg/blob/master/python/pyiceberg/io/__init__.py#L292-L301)pyarrow[ library exists](https://github.com/apache/iceberg/blob/master/python/pyiceberg/io/__init__.py#L292-L301). it then falls back to the fsspec implementation which [currently requires ](https://github.com/apache/iceberg/blob/master/python/pyiceberg/io/fsspec.py#L34)pyarrow[ as well](https://github.com/apache/iceberg/blob/master/python/pyiceberg/io/fsspec.py#L34) from pyarrow.filesystem import LocalFileSystem so it looks like theres current no way to use the fsspec io implementation... -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
