kou commented on PR #40325: URL: https://github.com/apache/arrow/pull/40325#issuecomment-1980296304
URI list from https://docs.rs/object_store/latest/object_store/azure/struct.MicrosoftAzureBuilder.html#method.with_url : * `abfs[s]://<container>/<path>` (according to [fsspec](https://github.com/fsspec/adlfs)) * `abfs[s]://<file_system>@<account_name>.dfs.core.windows.net/<path>` * `abfs[s]://<file_system>@<account_name>.dfs.fabric.microsoft.com/<path>` * `az://<container>/<path>` * `adl://<container>/<path>` * `azure://<container>/<path>` * `https://<account>.dfs.core.windows.net` * `https://<account>.blob.core.windows.net` * `https://<account>.blob.core.windows.net/<container>` * `https://<account>.dfs.fabric.microsoft.com` * `https://<account>.dfs.fabric.microsoft.com/<container>` * `https://<account>.blob.fabric.microsoft.com` * `https://<account>.blob.fabric.microsoft.com/<container>` We can use `abfs`/`abfss`/`az`/`adl`/`azure` schemes with the current `FileSystemFromUri()` mechanism. But `https` is a bit tricky. We need to check not only the scheme part but also the host part. This means that we need to put Azure related URI parsing code to `filesystem.cc` and `azurefs.cc`. And this isn't suitable for #39067 . #39067 only uses the scheme part to dispatch filesystem 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]
