yahoNanJing commented on a change in pull request #1779: URL: https://github.com/apache/arrow-datafusion/pull/1779#discussion_r801322675
########## File path: datafusion/src/datasource/object_store/local.rs ########## @@ -39,6 +39,11 @@ pub struct LocalFileSystem; #[async_trait] impl ObjectStore for LocalFileSystem { async fn list_file(&self, prefix: &str) -> Result<FileMetaStream> { + let prefix = if let Some((_scheme, path)) = prefix.split_once("://") { Review comment: For whether we need to include the vip info in the path, I prefer to include it especially when running with Ballista for distributed execution. Then we will be able to do self-registration or self-detection based on the uri without transfer the object store. I also mentioned this in #1702. -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org