manoj-inukolunu commented on PR #9064: URL: https://github.com/apache/arrow-datafusion/pull/9064#issuecomment-1916134127
Hello @alamb , Here is a draft for https://github.com/apache/arrow-datafusion/issues/8907 . I am yet to add tests. Currently `DefaultObjectStoreRegistry` ``` pub fn new() -> Self { let object_stores: DashMap<String, Arc<dyn ObjectStore>> = DashMap::new(); object_stores.insert("file://".to_string(), Arc::new(LocalFileSystem::new())); Self { object_stores } } ``` registers only `LocalFileSystem` . I am wondering if it should register other stores as well , like S3, GCS etc. -- 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]
