daviewales opened a new issue, #7046: URL: https://github.com/apache/arrow-rs/issues/7046
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** In adlfs (fsspec), there are [two valid conventions](https://github.com/fsspec/adlfs#quickstart) for specifying a canonical path to Azure Data Lake Gen2 storage, including the account name: az://[email protected]/path-part/file abfs://[email protected]/path-part/file While `object_store` supports both the `az` and `abfs` protocols, it does not support specifying the account in the URL for the `az` protocol. However, it [does support](https://docs.rs/object_store/latest/object_store/azure/struct.MicrosoftAzureBuilder.html#method.with_url) this for the `abfs` protocol. **Describe the solution you'd like** I would like to be able to use the following URL convention with `object_store`, which improves compatibility with `adlfs`: az://[email protected]/path-part/file **Describe alternatives you've considered** The workaround is to remember that I need to use the `abfs` protocol in `object_store` based tools such as `polars`. However, it would be nice to be able to use the `az` protocol for everything. -- 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]
